qiv (graphics/qiv) is a great image viewer, but it does not use gtk2
but imlib for image handling. This is bad, because many distributions
(well, at least gentoo) do not offer this library anymore as it's
quite old and not maintained anymore.
When the first release of pqiv was written, I used python, hence the
name. I expected somebody else to write a c-rewrite of qiv, so I
didn't really care about that. About one month later nothing had
happened yet, so I did this on my own. Starting from 0.4 pqiv means
"pretty quick image viewer", written in pure C, using gtk+-2.0.
Features include:
* Fullscreen
* Slideshow
* Rotate / Flip
* (Automatic/manual) Zoom
* Move by drag & drop in fullscreen
* Keep preferences in a configuration file
* Rather small executable (~36k), low ram consumtion, quick
* Execute predefined commands, pipe images through them or display their output
* Real transparency
* Fade between images
WWW: http://www.pberndt.com/Programme/Linux/pqiv/index.html
PR: ports/122191
Submitted by: Martin Tournoij <carpetsmoker@xs4all.nl>
2008-04-04 17:01:24 +02:00
|
|
|
# New ports collection makefile for: graphics/pqiv
|
|
|
|
# Date created: March 28 2008
|
|
|
|
# Whom: Martin Tournoij <carpetsmoker@xs4all.nl>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= pqiv
|
2009-01-31 05:32:10 +01:00
|
|
|
PORTVERSION= 0.8
|
qiv (graphics/qiv) is a great image viewer, but it does not use gtk2
but imlib for image handling. This is bad, because many distributions
(well, at least gentoo) do not offer this library anymore as it's
quite old and not maintained anymore.
When the first release of pqiv was written, I used python, hence the
name. I expected somebody else to write a c-rewrite of qiv, so I
didn't really care about that. About one month later nothing had
happened yet, so I did this on my own. Starting from 0.4 pqiv means
"pretty quick image viewer", written in pure C, using gtk+-2.0.
Features include:
* Fullscreen
* Slideshow
* Rotate / Flip
* (Automatic/manual) Zoom
* Move by drag & drop in fullscreen
* Keep preferences in a configuration file
* Rather small executable (~36k), low ram consumtion, quick
* Execute predefined commands, pipe images through them or display their output
* Real transparency
* Fade between images
WWW: http://www.pberndt.com/Programme/Linux/pqiv/index.html
PR: ports/122191
Submitted by: Martin Tournoij <carpetsmoker@xs4all.nl>
2008-04-04 17:01:24 +02:00
|
|
|
CATEGORIES= graphics
|
|
|
|
MASTER_SITES= http://www.pberndt.com/raw//Programme/Linux/pqiv/_download/ \
|
|
|
|
http://www.carpetsmoker.net/distfiles/ \
|
|
|
|
http://www.xs4all.nl/~tournoij/distfiles/ \
|
|
|
|
http://www.rwxrwxrwx.net/distfiles/
|
|
|
|
EXTRACT_SUFX= .tbz
|
|
|
|
|
2008-08-03 00:19:33 +02:00
|
|
|
MAINTAINER= carpetsmoker@rwxrwxrwx.net
|
qiv (graphics/qiv) is a great image viewer, but it does not use gtk2
but imlib for image handling. This is bad, because many distributions
(well, at least gentoo) do not offer this library anymore as it's
quite old and not maintained anymore.
When the first release of pqiv was written, I used python, hence the
name. I expected somebody else to write a c-rewrite of qiv, so I
didn't really care about that. About one month later nothing had
happened yet, so I did this on my own. Starting from 0.4 pqiv means
"pretty quick image viewer", written in pure C, using gtk+-2.0.
Features include:
* Fullscreen
* Slideshow
* Rotate / Flip
* (Automatic/manual) Zoom
* Move by drag & drop in fullscreen
* Keep preferences in a configuration file
* Rather small executable (~36k), low ram consumtion, quick
* Execute predefined commands, pipe images through them or display their output
* Real transparency
* Fade between images
WWW: http://www.pberndt.com/Programme/Linux/pqiv/index.html
PR: ports/122191
Submitted by: Martin Tournoij <carpetsmoker@xs4all.nl>
2008-04-04 17:01:24 +02:00
|
|
|
COMMENT= Pretty Quick Image Viewer
|
|
|
|
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_GNOME= gtk20 glib20 pango pkgconfig
|
|
|
|
CFLAGS+= -DNO_INOTIFY
|
|
|
|
PLIST_FILES= bin/pqiv
|
|
|
|
PORTDOCS= README
|
|
|
|
MAN1= pqiv.1
|
|
|
|
MANCOMPRESSED= no
|
|
|
|
|
|
|
|
OPTIONS= SORTING "Enable sorting of loaded files" on \
|
|
|
|
COMPOSITE "Enable support for transparent windows" on \
|
|
|
|
FADING "Enable support for fading images" on \
|
|
|
|
COMMANDS "Enable support for external command execution" on \
|
|
|
|
CONFIG "Enable support for a configuration file" on
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if defined(WITHOUT_SORTING)
|
|
|
|
CFLAGS+= -DNO_SORTING
|
|
|
|
SORTFILE= # Empty
|
|
|
|
.else
|
|
|
|
SORTFILE= ${WRKSRC}/lib/strnatcmp.c
|
|
|
|
.endif
|
|
|
|
.if defined(WITHOUT_COMPOSITE)
|
|
|
|
CFLAGS+= -DNO_COMPOSITING
|
|
|
|
.endif
|
|
|
|
.if defined(WITHOUT_FADING)
|
|
|
|
CFLAGS+= -DNO_FADING
|
|
|
|
.endif
|
|
|
|
.if defined(WITHOUT_COMMANDS)
|
|
|
|
CFLAGS+= -DNO_COMMANDS
|
|
|
|
.endif
|
|
|
|
.if defined(WITHOUT_CONFIG)
|
|
|
|
CFLAGS+= -DNO_CONFIG_FILE
|
|
|
|
.endif
|
|
|
|
|
|
|
|
do-build:
|
|
|
|
${CC} ${CFLAGS} `${pkgconfig_DETECT} --libs --cflags gtk+-2.0 gthread-2.0 pango glib-2.0` \
|
|
|
|
${SORTFILE} ${WRKSRC}/pqiv.c -o ${WRKSRC}/pqiv
|
|
|
|
@${REINPLACE_CMD} 's|$$PACKAGE_VERSION|${PORTVERSION}|' \
|
|
|
|
${WRKSRC}/pqiv.1.template
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pqiv ${PREFIX}/bin
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/pqiv.1.template ${MAN1PREFIX}/man/man1/pqiv.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|