svn commit: r347957 - head/www/serendipity
Martin Wilke
miwi at FreeBSD.org
Wed Mar 12 02:50:22 UTC 2014
Author: miwi
Date: Wed Mar 12 02:50:22 2014
New Revision: 347957
URL: http://svnweb.freebsd.org/changeset/ports/347957
QAT: https://qat.redports.org/buildarchive/r347957/
Log:
- Stage support
Modified:
head/www/serendipity/Makefile
Modified: head/www/serendipity/Makefile
==============================================================================
--- head/www/serendipity/Makefile Wed Mar 12 02:47:23 2014 (r347956)
+++ head/www/serendipity/Makefile Wed Mar 12 02:50:22 2014 (r347957)
@@ -23,7 +23,6 @@ USE_BZIP2= YES
OPTIONS_DEFINE= MYSQL PGSQL SQLITE MAGICK
OPTIONS_DEFAULT= MYSQL MAGICK
-NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMYSQL}
@@ -43,12 +42,9 @@ RUN_DEPENDS+= convert:${PORTSDIR}/graphi
.endif
do-install:
- @-${MKDIR} ${PREFIX}/${SERENDIPITY}
- @${CHMOD} 755 ${PREFIX}/${SERENDIPITY}
- @(cd ${WRKSRC} && ${CP} -R * ${PREFIX}/${SERENDIPITY}/ )
- @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${SERENDIPITY}
-
-post-install:
- @${CAT} ${PKGMESSAGE}
+ @-${MKDIR} ${STAGEDIR}${PREFIX}/${SERENDIPITY}
+ @${CHMOD} 755 ${STAGEDIR}${PREFIX}/${SERENDIPITY}
+ @(cd ${WRKSRC} && ${CP} -R * ${STAGEDIR}${PREFIX}/${SERENDIPITY}/ )
+ @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${PREFIX}/${SERENDIPITY}
.include <bsd.port.mk>
More information about the svn-ports-all
mailing list