Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Jan 2016 23:32:40 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r406283 - head/databases/vfront
Message-ID:  <201601162332.u0GNWeti055789@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Sat Jan 16 23:32:40 2016
New Revision: 406283
URL: https://svnweb.freebsd.org/changeset/ports/406283

Log:
  - Remove deprecated @dirrm usage, convert to @dir
  - Add LICENSE_FILE, NO_ARCH
  - Use options helpers
  
  Approved by:	portmgr blanket

Modified:
  head/databases/vfront/Makefile

Modified: head/databases/vfront/Makefile
==============================================================================
--- head/databases/vfront/Makefile	Sat Jan 16 23:06:07 2016	(r406282)
+++ head/databases/vfront/Makefile	Sat Jan 16 23:32:40 2016	(r406283)
@@ -9,8 +9,10 @@ MAINTAINER=	crees@FreeBSD.org
 COMMENT=	Simple frontend for database data entry
 
 LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/license
 
 NO_BUILD=	yes
+NO_ARCH=	yes
 PLIST=		${WRKDIR}/pkg-plist
 
 USE_PHP=	yes
@@ -19,17 +21,9 @@ OPTIONS_MULTI=	database
 OPTIONS_MULTI_database=	MYSQL PGSQL
 OPTIONS_DEFAULT=	MYSQL PGSQL
 
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MMYSQL}
-USE_PHP+=	mysqli
-USE_MYSQL=	yes
-.endif
-
-.if ${PORT_OPTIONS:MPGSQL}
-USE_PHP+=	pgsql
-USES+=		pgsql
-.endif
+MYSQL_USE=	MYSQL=yes PHP=mysqli
+PGSQL_USES=	pgsql
+PGSQL_USE=	PHP=pgsql
 
 post-patch:
 	${REINPLACE_CMD} -i '' -e \
@@ -40,9 +34,8 @@ post-patch:
 pre-install:
 	(cd ${WRKSRC} && \
 	    ${FIND} * -type f | ${SED} 's,^,%%WWWDIR%%/,' > ${PLIST} && \
-	    ${FIND} * -type d | ${SORT} -r | \
-			${SED} 's,^,@dirrmtry %%WWWDIR%%/,' >> ${PLIST})
-	@${ECHO_CMD} '@dirrmtry %%WWWDIR%%' >> ${PLIST}
+	    ${FIND} * -type d -empty | ${SORT} -r | \
+			${SED} 's,^,@dir %%WWWDIR%%/,' >> ${PLIST})
 	@${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN} %D/%%WWWDIR%%' >> ${PLIST}
 	@${ECHO_CMD} '@exec ${CHMOD} 700 %D/%%WWWDIR%%/conf' >> ${PLIST}
 



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