From owner-svn-ports-head@FreeBSD.ORG Fri Jan 17 16:11:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64D04D35; Fri, 17 Jan 2014 16:11:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 505FF11EA; Fri, 17 Jan 2014 16:11:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0HGBDwj058204; Fri, 17 Jan 2014 16:11:13 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0HGBCD8058196; Fri, 17 Jan 2014 16:11:12 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401171611.s0HGBCD8058196@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Fri, 17 Jan 2014 16:11:12 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jan 2014 16:11:13 -0000 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 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 +# $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 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