Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 Aug 2012 14:20:02 +0000 (UTC)
From:      Guido Falsi <madpilot@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r302760 - head/graphics/viewnior
Message-ID:  <201208191420.q7JEK2m7093835@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: madpilot
Date: Sun Aug 19 14:20:01 2012
New Revision: 302760
URL: http://svn.freebsd.org/changeset/ports/302760

Log:
  - 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)

Modified:
  head/graphics/viewnior/Makefile   (contents, props changed)

Modified: head/graphics/viewnior/Makefile
==============================================================================
--- head/graphics/viewnior/Makefile	Sun Aug 19 13:19:48 2012	(r302759)
+++ head/graphics/viewnior/Makefile	Sun Aug 19 14:20:01 2012	(r302760)
@@ -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:${PORT
 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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208191420.q7JEK2m7093835>