aboutsummaryrefslogtreecommitdiff
path: root/graphics/viewnior
diff options
context:
space:
mode:
authorGuido Falsi <madpilot@FreeBSD.org>2012-08-19 14:20:01 +0000
committerGuido Falsi <madpilot@FreeBSD.org>2012-08-19 14:20:01 +0000
commit3a2713986589a25e2770f2649b302c4f6a28e64e (patch)
tree4710875c2451c15718f2ad19f860e00b8ff0d254 /graphics/viewnior
parentc0954c599b1aa72fad8dfadae4434473ffc7f52c (diff)
downloadports-3a2713986589a25e2770f2649b302c4f6a28e64e.tar.gz
ports-3a2713986589a25e2770f2649b302c4f6a28e64e.zip
- Convert to OptionsNG
- Don't depend on intltool and pkgconfig - Remove INSTALL from PORTDOCS - Bump PORTREVISION PR: ports/170751 Submitted by: nemysis <nemysis@gmx.ch> (maintainer) Approved by: crees (mentor)
Notes
Notes: svn path=/head/; revision=302760
Diffstat (limited to 'graphics/viewnior')
-rw-r--r--graphics/viewnior/Makefile21
1 files changed, 12 insertions, 9 deletions
diff --git a/graphics/viewnior/Makefile b/graphics/viewnior/Makefile
index d7294ad13e75..8ad948d87c9e 100644
--- a/graphics/viewnior/Makefile
+++ b/graphics/viewnior/Makefile
@@ -7,6 +7,7 @@
PORTNAME= viewnior
PORTVERSION= 1.3
+PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= http://cloud.github.com/downloads/xsisqox/Viewnior/
@@ -21,29 +22,31 @@ RUN_DEPENDS= update-mime-database:${PORTSDIR}/misc/shared-mime-info
GNU_CONFIGURE= yes
USE_AUTOTOOLS= autoconf
USE_GMAKE= yes
-USE_GNOME= glib20 gtk20 intltool pkgconfig
+USE_GNOME= glib20 gtk20
INSTALLS_ICONS= yes
MAN1= viewnior.1
-PORTDOCS= AUTHORS ChangeLog INSTALL NEWS README TODO
+PORTDOCS= AUTHORS ChangeLog NEWS README TODO
-OPTIONS= NLS "Enable gettext support" on
+OPTIONS_DEFINE= NLS
+NLS_DESC= Native Language Support via gettext
+OPTIONS_DEFAULT= NLS
.include <bsd.port.options.mk>
-.if defined(WITHOUT_NLS)
-CONFIGURE_ARGS+= --disable-nls
-PLIST_SUB+= NLS="@comment "
-.else
+.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
+.else
+CONFIGURE_ARGS+= --disable-nls
+PLIST_SUB+= NLS="@comment "
.endif
post-install:
${INSTALL_MAN} ${WRKSRC}/man/${MAN1} ${MAN1PREFIX}/man/man1
-# Documentations
-.if !defined(NOPORTDOCS)
+# Documentation
+.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
. for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}