Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Apr 2013 21:00:33 +0000 (UTC)
From:      Bernhard Froehlich <decke@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r315714 - head/audio/vagalume
Message-ID:  <201304032100.r33L0X9m076187@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: decke
Date: Wed Apr  3 21:00:33 2013
New Revision: 315714
URL: http://svnweb.freebsd.org/changeset/ports/315714

Log:
  - Properly fix NLS now and revert last fix attempt
  
  Approved by:	portmgr (myself)

Modified:
  head/audio/vagalume/Makefile

Modified: head/audio/vagalume/Makefile
==============================================================================
--- head/audio/vagalume/Makefile	Wed Apr  3 20:27:48 2013	(r315713)
+++ head/audio/vagalume/Makefile	Wed Apr  3 21:00:33 2013	(r315714)
@@ -31,12 +31,13 @@ TRAY_DESC=	Tray icon and libnotify suppo
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MNLS}
-PLIST_SUB+=	NLS="@comment "
-.else
 USE_GETTEXT=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 PLIST_SUB+=	NLS=""
+.else
+CONFIGURE_ARGS+=--disable-nls
+PLIST_SUB+=	NLS="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MDBUS}
@@ -65,7 +66,7 @@ CONFIGURE_ARGS+=--enable-gconf
 post-patch:
 	@${REINPLACE_CMD} -e 's|serviceentrydir = @serviceentrydir@|serviceentrydir = ${PREFIX}/share/dbus-1/services|' \
 		${WRKSRC}/Makefile.in
-.if ${PORT_OPTIONS:MNLS}
+.if empty(PORT_OPTIONS:MNLS)
 	@${REINPLACE_CMD} -e 's|SUBDIRS = src po|SUBDIRS = src|' \
 		${WRKSRC}/Makefile.in
 .endif



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