diff options
author | antoine <antoine@FreeBSD.org> | 2014-08-11 04:23:02 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-08-11 04:23:02 +0800 |
commit | feb700435f23a03c992c67fe7d6a9bdedb0eeb48 (patch) | |
tree | bf7aaca37227854ab8135aec678e0ee01aa78607 /deskutils/tine20 | |
parent | abc45410d5357d208e45c99ade62e515006d108d (diff) | |
download | freebsd-ports-gnome-feb700435f23a03c992c67fe7d6a9bdedb0eeb48.tar.gz freebsd-ports-gnome-feb700435f23a03c992c67fe7d6a9bdedb0eeb48.tar.zst freebsd-ports-gnome-feb700435f23a03c992c67fe7d6a9bdedb0eeb48.zip |
Workaround NO_WRKSUBDIR + ${COPYTREE} . side effects
Diffstat (limited to 'deskutils/tine20')
-rw-r--r-- | deskutils/tine20/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deskutils/tine20/Makefile b/deskutils/tine20/Makefile index c39b1b985174..6f6a55ab1237 100644 --- a/deskutils/tine20/Makefile +++ b/deskutils/tine20/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= tar:bzip2 NO_BUILD= yes -WRKSRC= ${WRKDIR} +EXTRACT_AFTER_ARGS= --no-same-owner --no-same-permissions -C ${WRKSRC} SUB_FILES= pkg-message SUB_LIST= DISTNAME=${DISTNAME} @@ -33,6 +33,9 @@ APC_USE= php=apc LDAP_USE= php=ldap MEMCACHE_USE= php=memcache +pre-extract: + ${MKDIR} ${WRKSRC} + do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} |