diff options
author | minskim <minskim> | 2006-07-28 01:50:58 +0000 |
---|---|---|
committer | minskim <minskim> | 2006-07-28 01:50:58 +0000 |
commit | 63618b446ced1301083d2e2124adec3a8ea2847c (patch) | |
tree | fb2c3701b0450f09a1b513bcaa2e6a7e7958d238 /devel/gnustep-make | |
parent | 8e409aa7e44de7979c4db836118bae32521ab095 (diff) | |
download | pkgsrc-63618b446ced1301083d2e2124adec3a8ea2847c.tar.gz |
Fix PLIST on non-ix86 platforms. Bump PKGREVISION.
Diffstat (limited to 'devel/gnustep-make')
-rw-r--r-- | devel/gnustep-make/Makefile | 10 | ||||
-rw-r--r-- | devel/gnustep-make/PLIST | 6 |
2 files changed, 12 insertions, 4 deletions
diff --git a/devel/gnustep-make/Makefile b/devel/gnustep-make/Makefile index c0aca690652..ea158dab380 100644 --- a/devel/gnustep-make/Makefile +++ b/devel/gnustep-make/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2006/07/22 05:10:54 rillig Exp $ +# $NetBSD: Makefile,v 1.31 2006/07/28 01:50:58 minskim Exp $ DISTNAME= gnustep-make-1.12.0 +PKGREVISION= 1 CATEGORIES= devel gnustep MASTER_SITES= ${MASTER_SITE_GNUSTEP:=core/} @@ -21,6 +22,13 @@ CONF_FILES+= ${PREFIX}/share/examples/GNUstep/GNUstep.conf \ .include "../../mk/x11.buildlink3.mk" .include "gnustep.mk" +.if ${MACHINE_ARCH} == "i386" +GNUSTEP_ARCH= ix86 +.else +GNUSTEP_ARCH= ${MACHINE_ARCH} +.endif +PLIST_SUBST+= GNUSTEP_ARCH=${GNUSTEP_ARCH} + SUBST_CLASSES+= target SUBST_STAGE.target= post-patch SUBST_FILES.target= target.make diff --git a/devel/gnustep-make/PLIST b/devel/gnustep-make/PLIST index eb6a42d9fa6..1f659050668 100644 --- a/devel/gnustep-make/PLIST +++ b/devel/gnustep-make/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.12 2006/03/03 07:24:10 wiz Exp $ +@comment $NetBSD: PLIST,v 1.13 2006/07/28 01:50:58 minskim Exp $ share/GNUstep/System/Library/Makefiles/GNUstep-reset.sh share/GNUstep/System/Library/Makefiles/GNUstep.csh share/GNUstep/System/Library/Makefiles/GNUstep.sh @@ -129,8 +129,8 @@ share/examples/GNUstep/GNUstep.conf @dirrm share/GNUstep/System/Library/Services @exec ${MKDIR} %D/share/GNUstep/System/Library/PostScript @dirrm share/GNUstep/System/Library/PostScript -@exec ${MKDIR} %D/share/GNUstep/System/Library/Makefiles/ix86 -@dirrm share/GNUstep/System/Library/Makefiles/ix86 +@exec ${MKDIR} %D/share/GNUstep/System/Library/Makefiles/${GNUSTEP_ARCH} +@dirrm share/GNUstep/System/Library/Makefiles/${GNUSTEP_ARCH} @dirrm share/GNUstep/System/Library/Makefiles/Master @dirrm share/GNUstep/System/Library/Makefiles/Instance/Shared @dirrm share/GNUstep/System/Library/Makefiles/Instance/Documentation |