diff options
author | asami <asami@FreeBSD.org> | 2000-04-07 09:35:30 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2000-04-07 09:35:30 +0000 |
commit | 0f01325228fd06940ca2b66262dbba3fe84e7003 (patch) | |
tree | 482265a64fdf9dca1a7a1e94d7faa7993eb94dd7 /graphics/gimp-app | |
parent | 2eb97bb1a655b6310938ce4aec27eaf7b6d5a0d4 (diff) | |
download | FreeBSD-ports-0f01325228fd06940ca2b66262dbba3fe84e7003.zip FreeBSD-ports-0f01325228fd06940ca2b66262dbba3fe84e7003.tar.gz |
Fix a couple bogons to make this work.
Submitted by: Maxim Sobolev <sobomax@altavista.net>
Diffstat (limited to 'graphics/gimp-app')
-rw-r--r-- | graphics/gimp-app/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/graphics/gimp-app/Makefile b/graphics/gimp-app/Makefile index 5f1de62..f0dc837 100644 --- a/graphics/gimp-app/Makefile +++ b/graphics/gimp-app/Makefile @@ -55,11 +55,11 @@ WITH_GNOME= yes .endif .if defined(WITHOUT_PERL) -PLISTORIG= ${WRKDIR}/PLIST -PLIST= ${PKGDIR}/PLIST +PLISTORIG= ${PKGDIR}/PLIST +PLIST= ${WRKDIR}/PLIST .else -PLISTORIG= ${WRKDIR}/PLIST.perl -PLIST= ${SRCDIR}/PLIST.perl +PLISTORIG= ${PKGDIR}/PLIST.perl +PLIST= ${WRKDIR}/PLIST.perl pre-fetch: @${ECHO} -n "If you want to compile without perl support " @${ECHO} "'make -DWITHOUT_PERL' instead" @@ -67,6 +67,8 @@ pre-fetch: .if defined(WITH_GNOME) && ${WITH_GNOME} == yes LIB_DEPENDS+= gtkxmhtml.3:${PORTSDIR}/x11/gnomelibs +pre-install: + @${CAT} ${PLISTORIG} > ${PLIST} .else pre-install: @${SED} -e '/helpbrowser/d' ${PLISTORIG} > ${PLIST} |