1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

1: Stagify.

2: add LICENSE.
3: use @sample, bump version.
This commit is contained in:
Vanilla I. Shu 2014-08-14 14:56:13 +00:00
parent e3f745eefc
commit b6228768e4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=364846
2 changed files with 11 additions and 24 deletions

View File

@ -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>

View File

@ -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