diff options
-rw-r--r-- | www/contao/Makefile.example | 4 | ||||
-rw-r--r-- | www/drupal6/Makefile | 5 | ||||
-rw-r--r-- | www/drupal7/Makefile | 5 |
3 files changed, 10 insertions, 4 deletions
diff --git a/www/contao/Makefile.example b/www/contao/Makefile.example index 23f670f0458..6da9ab84d56 100644 --- a/www/contao/Makefile.example +++ b/www/contao/Makefile.example @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.example,v 1.6 2012/06/16 13:11:22 taca Exp $ +# $NetBSD: Makefile.example,v 1.7 2012/06/25 08:57:10 jperkin Exp $ # # used by www/contao211-example/Makefile # @@ -32,7 +32,7 @@ EXTRACT_ELEMENTS+= ${DISTNAME}/${f} PKG_GROUPS_VARS+= APACHE_GROUP PKG_USERS_VARS+= APACHE_USER -INSTALLATION_DIRS+= ${CT_WEBDIR}/templates +INSTALLATION_DIRS+= ${CT_EGDIR} ${CT_WEBDIR}/templates do-install: cd ${WRKSRC}; \ diff --git a/www/drupal6/Makefile b/www/drupal6/Makefile index 436327cbb1d..98c21dc2ea8 100644 --- a/www/drupal6/Makefile +++ b/www/drupal6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2012/06/16 03:04:23 taca Exp $ +# $NetBSD: Makefile,v 1.37 2012/06/25 09:00:26 jperkin Exp $ DISTNAME= drupal-6.26 CATEGORIES= www @@ -53,6 +53,9 @@ SUBST_MESSAGE.conf= Fixing configuration files. INSTALLATION_DIRS+= ${DRUPAL}/files ${DRUPAL}/sites/all \ share/doc/drupal share/examples/drupal +.for i in ${PAX_DIRS} +INSTALLATION_DIRS+= ${DRUPAL}/${i} +.endfor .include "options.mk" diff --git a/www/drupal7/Makefile b/www/drupal7/Makefile index 9bf805a9474..ae4ff023f89 100644 --- a/www/drupal7/Makefile +++ b/www/drupal7/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2012/06/16 03:04:24 taca Exp $ +# $NetBSD: Makefile,v 1.9 2012/06/25 09:02:08 jperkin Exp $ DISTNAME= drupal-7.14 CATEGORIES= www @@ -54,6 +54,9 @@ SUBST_MESSAGE.conf= Fixing configuration files. INSTALLATION_DIRS+= ${DRUPAL}/files ${DRUPAL}/sites/all \ share/doc/drupal share/examples/drupal +.for i in ${PAX_DIRS} +INSTALLATION_DIRS+= ${DRUPAL}/${i} +.endfor .include "options.mk" |