diff options
Diffstat (limited to 'graphics/pqiv/Makefile')
-rw-r--r-- | graphics/pqiv/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/graphics/pqiv/Makefile b/graphics/pqiv/Makefile index 9d02830bfaeb..863a168531de 100644 --- a/graphics/pqiv/Makefile +++ b/graphics/pqiv/Makefile @@ -6,8 +6,7 @@ # PORTNAME= pqiv -PORTVERSION= 0.10.1 -PORTREVISION= 1 +PORTVERSION= 0.11 CATEGORIES= graphics MASTER_SITES= http://www.pberndt.com/raw/Programme/Linux/pqiv/_download/ EXTRACT_SUFX= .tbz @@ -15,11 +14,14 @@ EXTRACT_SUFX= .tbz MAINTAINER= ports@FreeBSD.org COMMENT= Pretty Quick Image Viewer +LICENSE= GPLv2 + 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 + CONFIG "Enable support for a configuration file" on \ + ANIMATIONS "Enable support for animations" on USE_BZIP2= yes USE_GNOME= gtk20 @@ -29,6 +31,9 @@ MAN1= pqiv.1 PORTDOCS= README PLIST_FILES= bin/pqiv +CPPFLAGS= `${pkgconfig_DETECT} --cflags gtk+-2.0 gthread-2.0` +LDFLAGS= `${pkgconfig_DETECT} --libs gtk+-2.0 gthread-2.0` + .include <bsd.port.pre.mk> .if defined(WITHOUT_SORTING) @@ -49,14 +54,17 @@ CFLAGS+= -DNO_COMMANDS .if defined(WITHOUT_CONFIG) CFLAGS+= -DNO_CONFIG_FILE .endif +.if defined(WITHOUT_ANIMATIONS) +CFLAGS+= -DNO_ANIMATIONS +.endif post-patch: - @(cd ${WRKSRC} && ${SED} 's|$$PACKAGE_VERSION|${PORTVERSION}|' \ - < pqiv.1.template > pqiv.1) + @(cd ${PATCH_WRKSRC} && ${SED} 's|$$PACKAGE_VERSION|${PORTVERSION}| ; \ + s|$$BINARY_NAME|${PORTNAME}|' < pqiv.1.template > pqiv.1) do-build: - (cd ${WRKSRC} && ${CC} ${CFLAGS} `${pkgconfig_DETECT} --libs --cflags gtk+-2.0 gthread-2.0` \ - ${SORTFILE} pqiv.c -o pqiv) + (cd ${BUILD_WRKSRC} && ${CC} ${CPPFLAGS} ${CFLAGS} ${SORTFILE} pqiv.c \ + -o pqiv ${LDFLAGS}) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pqiv ${PREFIX}/bin |