svn commit: r312792 - head/www/gecko-mediaplayer

Jung-uk Kim jkim at FreeBSD.org
Fri Feb 22 21:34:28 UTC 2013


Author: jkim
Date: Fri Feb 22 21:34:27 2013
New Revision: 312792
URL: http://svnweb.freebsd.org/changeset/ports/312792

Log:
  Fix the previous commit.  Incomplete file was committed.
  
  Pointyhat to:	jkim

Modified:
  head/www/gecko-mediaplayer/Makefile

Modified: head/www/gecko-mediaplayer/Makefile
==============================================================================
--- head/www/gecko-mediaplayer/Makefile	Fri Feb 22 21:29:49 2013	(r312791)
+++ head/www/gecko-mediaplayer/Makefile	Fri Feb 22 21:34:27 2013	(r312792)
@@ -40,6 +40,12 @@ PORTDOCS=	README COPYING AUTHORS ChangeL
 
 .include <bsd.port.options.mk>
 
+.if ${PORT_OPTIONS:MCACHE}
+CONFIGURE_ARGS+=	--enable-caching
+.else
+CONFIGURE_ARGS+=	--disable-caching
+.endif
+
 .if ${PORT_OPTIONS:MNLS}
 USE_GETTEXT=	yes
 PLIST_SUB=	NLS=""
@@ -48,12 +54,6 @@ USE_GETTEXT=	build
 PLIST_SUB=	NLS="@comment "
 .endif
 
-.if ${PORT_OPTIONS:MNOCACHE}
-CONFIGURE_ARGS+=	--disable-caching
-.else
-CONFIGURE_ARGS+=	--enable-caching
-.endif
-
 post-patch:
 	@${REINPLACE_CMD} -e 's|-ldl||' \
 		${WRKSRC}/configure \


More information about the svn-ports-head mailing list