diff options
author | joerg <joerg@pkgsrc.org> | 2009-06-14 22:57:58 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-06-14 22:57:58 +0000 |
commit | 9bb0d96ea93fe7d169bb22cd824d463449d51611 (patch) | |
tree | 63741286465d08baa5292031d5f6b9ffd847c5b9 /www/typolight | |
parent | dc3a8c2312879451e787a3a002089e0123c0d646 (diff) | |
download | pkgsrc-9bb0d96ea93fe7d169bb22cd824d463449d51611.tar.gz |
Remove @dirrm related logic.
Diffstat (limited to 'www/typolight')
-rw-r--r-- | www/typolight/Makefile.common | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/www/typolight/Makefile.common b/www/typolight/Makefile.common index 3669c167984..776852332b6 100644 --- a/www/typolight/Makefile.common +++ b/www/typolight/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.12 2009/05/30 16:51:06 taca Exp $ +# $NetBSD: Makefile.common,v 1.13 2009/06/14 22:58:10 joerg Exp $ # # used by www/typolight26/Makefile # used by www/typolight27/Makefile @@ -17,21 +17,13 @@ MESSAGE_SUBST+= TL_VER=${TL_VER} PLIST_SUBST+= TL_DOCDIR=${TL_DOCDIR:Q} TL_EGDIR=${TL_EGDIR:Q} \ TL_WEBDIR=${TL_WEBDIR:Q} -PRINT_PLIST_AWK+= /@dirrm ${TL_WEBDIR:S|/|\\/|g}\/templates$$/ \ - { next; } -PRINT_PLIST_AWK+= /@dirrm ${TL_WEBDIR:S|/|\\/|g}\/system\/(tmp|log)$$/ \ - { next; } -PRINT_PLIST_AWK+= /@dirrm ${TL_WEBDIR:S|/|\\/|g}\/system$$/ \ - { next; } -PRINT_PLIST_AWK+= /@dirrm ${TL_WEBDIR:S|/|\\/|g}$$/ \ - { next; } -PRINT_PLIST_AWK+= /^(@dirrm )?${TL_WEBDIR:S|/|\\/|g}/ \ +PRINT_PLIST_AWK+= /^${TL_WEBDIR:S|/|\\/|g}/ \ { gsub(/${TL_WEBDIR:S|/|\\/|g}/, "$${TL_WEBDIR}"); \ print; next; } -PRINT_PLIST_AWK+= /^(@dirrm )?${TL_DOCDIR:S|/|\\/|g}/ \ +PRINT_PLIST_AWK+= /^${TL_DOCDIR:S|/|\\/|g}/ \ { gsub(/${TL_DOCDIR:S|/|\\/|g}/, "$${TL_DOCDIR}"); \ print; next; } -PRINT_PLIST_AWK+= /^(@dirrm )?${TL_EGDIR:S|/|\\/|g}/ \ +PRINT_PLIST_AWK+= /^${TL_EGDIR:S|/|\\/|g}/ \ { gsub(/${TL_EGDIR:S|/|\\/|g}/, "$${TL_EGDIR}"); \ print; next; } |