Date: Fri, 17 Jan 2014 16:11:12 +0000 (UTC) From: Danilo Egea Gondolfo <danilo@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340065 - in head/graphics: . sxiv sxiv/files Message-ID: <201401171611.s0HGBCD8058196@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danilo Date: Fri Jan 17 16:11:11 2014 New Revision: 340065 URL: http://svnweb.freebsd.org/changeset/ports/340065 QAT: https://qat.redports.org/buildarchive/r340065/ Log: - Add new port graphics/sxiv sxiv is a light image viewer which as a few features : - Basic image operations, e.g. zooming, panning, rotating - Customizable key and mouse button mappings (in config.h) - Thumbnail mode: grid of selectable previews of all images - Ability to cache thumbnails for fast re-loading - Basic support for multi-frame images - Load all frames from GIF files and play GIF animations - Display image information in status bar PR: ports/185672 Submitted by: Rapenne <charles@bsd.zplay.eu> Added: head/graphics/sxiv/ head/graphics/sxiv/Makefile (contents, props changed) head/graphics/sxiv/distinfo (contents, props changed) head/graphics/sxiv/files/ head/graphics/sxiv/files/patch-Makefile (contents, props changed) head/graphics/sxiv/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Fri Jan 17 16:00:09 2014 (r340064) +++ head/graphics/Makefile Fri Jan 17 16:11:11 2014 (r340065) @@ -989,6 +989,7 @@ SUBDIR += swfdec SUBDIR += swfmill SUBDIR += swftools + SUBDIR += sxiv SUBDIR += synaesthesia SUBDIR += synfigstudio SUBDIR += telak Added: head/graphics/sxiv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/sxiv/Makefile Fri Jan 17 16:11:11 2014 (r340065) @@ -0,0 +1,27 @@ +# Created by: Charles RAPENNE <charles@bsd.zplay.eu> +# $FreeBSD$ + +PORTNAME= sxiv +PORTVERSION= 1.1.1 +CATEGORIES= graphics +MASTER_SITES= https://github.com/muennich/sxiv/archive/ +DISTNAME= v${PORTVERSION} + +MAINTAINER= charles@bsd.zplay.eu +COMMENT= Lightweight image viewer + +LICENSE= GPLv2 + +LIB_DEPENDS= libImlib2.so:${PORTSDIR}/graphics/imlib2 + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/ +USES= pkgconfig +USE_XORG= x11 + +PLIST_FILES= bin/sxiv \ + man/man1/sxiv.1.gz \ + share/sxiv/exec/image-info +PLIST_DIRS= share/sxiv/exec \ + share/sxiv + +.include <bsd.port.mk> Added: head/graphics/sxiv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/sxiv/distinfo Fri Jan 17 16:11:11 2014 (r340065) @@ -0,0 +1,2 @@ +SHA256 (v1.1.1.tar.gz) = 30569b7cb1568a7f60d102f6eb21f25c93de42243a1c8ac3c1a521d58b08281f +SIZE (v1.1.1.tar.gz) = 37251 Added: head/graphics/sxiv/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/sxiv/files/patch-Makefile Fri Jan 17 16:11:11 2014 (r340065) @@ -0,0 +1,13 @@ +--- ./Makefile.orig 2013-06-02 07:04:40.000000000 -0300 ++++ ./Makefile 2014-01-17 00:55:01.000000000 -0200 +@@ -1,9 +1,8 @@ + VERSION = 1.1.1 + + PREFIX = /usr/local +-MANPREFIX = $(PREFIX)/share/man ++MANPREFIX = $(PREFIX)/man + +-CC = gcc + CFLAGS = -std=c99 -Wall -pedantic -O2 -I$(PREFIX)/include -DHAVE_GIFLIB + LDFLAGS = -L$(PREFIX)/lib + LIBS = -lX11 -lImlib2 -lgif Added: head/graphics/sxiv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/sxiv/pkg-descr Fri Jan 17 16:11:11 2014 (r340065) @@ -0,0 +1,13 @@ +Simple X Image Viewer + +sxiv is a light image viewer which as a few features : + +- Basic image operations, e.g. zooming, panning, rotating +- Customizable key and mouse button mappings (in config.h) +- Thumbnail mode: grid of selectable previews of all images +- Ability to cache thumbnails for fast re-loading +- Basic support for multi-frame images +- Load all frames from GIF files and play GIF animations +- Display image information in status bar + +WWW: https://github.com/muennich/sxiv
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401171611.s0HGBCD8058196>