Date: Wed, 05 Apr 2000 12:08:30 +0300 From: Maxim Sobolev <sobomax@altavista.net> To: "Vanilla I. Shu" <vanilla@freebsd.org> Cc: cvs-all@freebsd.org, ports@freebsd.org Subject: Re: cvs commit: ports/graphics/gimp1 Makefile ports/graphics/gimp1/filesgimp.setfont md5 ports/graphics/gimp1/patches patch-ao patch-ahpatch-ak patch-an ports/graphics/gimp1/pkg PLIST.perl PLIST Message-ID: <38EB028E.247723A8@altavista.net> References: <200004021914.MAA17822@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------F469014B374B9381EEB3CCCD
Content-Type: text/plain; charset=koi8-r
Content-Transfer-Encoding: 7bit
"Vanilla I. Shu" wrote:
> vanilla 2000/04/02 12:14:31 PDT
>
> Modified files:
> graphics/gimp1 Makefile
> graphics/gimp1/files gimp.setfont md5
> graphics/gimp1/patches patch-ah patch-ak patch-an
> graphics/gimp1/pkg PLIST
> Added files:
> graphics/gimp1/patches patch-ao
> graphics/gimp1/pkg PLIST.perl
> Log:
> Upgrade to 1.1.18, and add myself as MAINTAINER.
> (erich leave us long time ago).
Did you look into resulting port's Makefile? Particulatly I'm interesting how
do you expect to PLIST=${SRCDIR}/PLIST.perl will be created? It is also broken
when USE_GNOME defined.
Following is small patch which should fix these obvious nasties.
-Maxim
--------------F469014B374B9381EEB3CCCD
Content-Type: text/plain; charset=koi8-r;
name="gimp.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="gimp.diff"
--- Makefile.orig Wed Apr 5 11:46:18 2000
+++ Makefile Wed Apr 5 11:52:44 2000
@@ -55,11 +55,11 @@
.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 @@
.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}
--------------F469014B374B9381EEB3CCCD--
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?38EB028E.247723A8>
