diff options
author | marino <marino@FreeBSD.org> | 2014-02-17 16:52:43 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-02-17 16:52:43 +0800 |
commit | 868a7c422e13c3c44a2dba7e6a074d25219f964d (patch) | |
tree | 634b0b8eff0619ffa3961ae41f6281c3664f4818 | |
parent | 31af6cf524479cc35a0b514f3a32497876406154 (diff) | |
download | freebsd-ports-gnome-868a7c422e13c3c44a2dba7e6a074d25219f964d.tar.gz freebsd-ports-gnome-868a7c422e13c3c44a2dba7e6a074d25219f964d.tar.zst freebsd-ports-gnome-868a7c422e13c3c44a2dba7e6a074d25219f964d.zip |
lang/asis: Fix licenses in PLIST
The post-install target was overwriting the licenses
which were already present in $TMPPLIST
reported-by: antoine
-rw-r--r-- | lang/asis/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/asis/Makefile b/lang/asis/Makefile index 95b49929e68c..28802315beb8 100644 --- a/lang/asis/Makefile +++ b/lang/asis/Makefile @@ -3,7 +3,7 @@ PORTNAME= asis PORTVERSION= 2011 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= http://downloads.dragonlace.net/src/ DISTNAME= ${PORTNAME}-gpl-${PORTVERSION}-src @@ -35,7 +35,7 @@ do-build: post-install: @cd ${STAGEDIR}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \ - ${SORT} > ${TMPPLIST} + ${SORT} >> ${TMPPLIST} @cd ${STAGEDIR}${PREFIX}; ${FIND} * -type d | ${AWK} '/\//' | \ ${SORT} -r | ${SED} -e '/lib\/gnat$$/d' -e '/share\/doc$$/d' \ -e '/share\/gps$$/d' -e '/share\/gps\/plug-ins$$/d' \ |