Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Aug 2014 14:56:14 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r364846 - head/ftp/net2ftp
Message-ID:  <201408141456.s7EEuEdO036403@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vanilla
Date: Thu Aug 14 14:56:13 2014
New Revision: 364846
URL: http://svnweb.freebsd.org/changeset/ports/364846
QAT: https://qat.redports.org/buildarchive/r364846/

Log:
  1: Stagify.
  2: add LICENSE.
  3: use @sample, bump version.

Modified:
  head/ftp/net2ftp/Makefile
  head/ftp/net2ftp/pkg-plist-chunk

Modified: head/ftp/net2ftp/Makefile
==============================================================================
--- head/ftp/net2ftp/Makefile	Thu Aug 14 12:46:02 2014	(r364845)
+++ head/ftp/net2ftp/Makefile	Thu Aug 14 14:56:13 2014	(r364846)
@@ -3,6 +3,7 @@
 
 PORTNAME=	net2ftp
 PORTVERSION=	0.98
+PORTREVISION=	1
 CATEGORIES=	ftp
 MASTER_SITES=	http://www.net2ftp.com/download/
 DISTNAME=	${PORTNAME}_v${PORTVERSION}
@@ -10,6 +11,8 @@ DISTNAME=	${PORTNAME}_v${PORTVERSION}
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	PHP scripts to work with ftp
 
+LICENSE=	GPLv2
+
 USES=		zip
 NO_BUILD=	YES
 .if !defined(WITHOUT_PHP_DEPENDS)
@@ -27,7 +30,6 @@ SUB_FILES+=	pkg-message
 # When creating a package, empty directories will not be generated
 # from the pkg tarball.  Therefore make sure no directories are empty.
 
-NO_STAGE=	yes
 post-patch:
 	 @cd ${WRKSRC}/files_to_upload ; \
 	 for emptydir in $$( ${FIND} . -type d -empty -print ) ; do \
@@ -48,25 +50,16 @@ install-app:
 	 for src in $$( ${FIND} . ! -name "settings*.inc.php" ) ; do \
 		  dst=${WWWDIR}$${src#.} ; \
 		  if ${TEST} -d $$src ; then \
-			   ${MKDIR} $$dst ; \
+			   ${MKDIR} ${STAGEDIR}$$dst ; \
 		  else \
-			   ${INSTALL_DATA} $$src $$dst ; \
+			   ${INSTALL_DATA} $$src ${STAGEDIR}$$dst ; \
 		  fi \
 	 done
 
 install-conf: install-app
 	 @cd ${WRKSRC}/files_to_upload ; \
-	 ${INSTALL_DATA} settings.inc.php ${WWWDIR}/settings.inc.php.sample ; \
-	 ${INSTALL_DATA} settings_authorizations.inc.php ${WWWDIR}/settings_authorizations.inc.php.sample ; \
-	 ${INSTALL_DATA} settings_screens.inc.php ${WWWDIR}/settings_screens.inc.php.sample
-	 @cd ${WWWDIR} ; \
-	 for CFGFILE in ${CFGFILES} ; do \
-		  if ${TEST} ! -f $${CFGFILE} ; then \
-			   ${CP} -p $${CFGFILE}.sample $${CFGFILE} ; \
-		  fi \
-	 done
-
-post-install:
-	 @${CAT} ${PKGMESSAGE}
+	 ${INSTALL_DATA} settings.inc.php ${STAGEDIR}${WWWDIR}/settings.inc.php.sample ; \
+	 ${INSTALL_DATA} settings_authorizations.inc.php ${STAGEDIR}${WWWDIR}/settings_authorizations.inc.php.sample ; \
+	 ${INSTALL_DATA} settings_screens.inc.php ${STAGEDIR}${WWWDIR}/settings_screens.inc.php.sample
 
 .include <bsd.port.mk>

Modified: head/ftp/net2ftp/pkg-plist-chunk
==============================================================================
--- head/ftp/net2ftp/pkg-plist-chunk	Thu Aug 14 12:46:02 2014	(r364845)
+++ head/ftp/net2ftp/pkg-plist-chunk	Thu Aug 14 14:56:13 2014	(r364846)
@@ -1,9 +1,3 @@
-@unexec if cmp -s %D/%%WWWDIR%%/settings.inc.php.sample %D/%%WWWDIR%%/settings.inc.php ; then rm -f %D/%%WWWDIR%%/settings.inc.php ; fi
-%%WWWDIR%%/settings.inc.php.sample
-@exec [ ! -f %B/settings.inc.php ] && cp -p %B/%f %B/settings.inc.php || true
-@unexec if cmp -s %D/%%WWWDIR%%/settings_authorizations.inc.php.sample %D/%%WWWDIR%%/settings_authorizations.inc.php ; then rm -f %D/%%WWWDIR%%/settings_authorizations.inc.php ; fi
-%%WWWDIR%%/settings_authorizations.inc.php.sample
-@exec [ ! -f %B/settings_authorizations.inc.php ] && cp -p %B/%f %B/settings_authorizations.inc.php || true
-@unexec if cmp -s %D/%%WWWDIR%%/settings_screens.inc.php.sample %D/%%WWWDIR%%/settings_screens.inc.php ; then rm -f %D/%%WWWDIR%%/settings_screens.inc.php ; fi
-%%WWWDIR%%/settings_screens.inc.php.sample
-@exec [ ! -f %B/settings_screens.inc.php ] && cp -p %B/%f %B/settings_screens.inc.php || true
+@sample %%WWWDIR%%/settings.inc.php.sample
+@sample %%WWWDIR%%/settings_authorizations.inc.php.sample
+@sample %%WWWDIR%%/settings_screens.inc.php.sample



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