diff options
author | nectar <nectar@FreeBSD.org> | 1999-02-23 03:06:07 +0800 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 1999-02-23 03:06:07 +0800 |
commit | 313cc0b7699b92eee2af68ca0dadc4477301159d (patch) | |
tree | 94b719783eeefc496a051c7a8f18f59c2b64986e /lang/python27/Makefile | |
parent | 904ef39db8f9cefa168ce4884f7fb5379ec251f8 (diff) | |
download | freebsd-ports-gnome-313cc0b7699b92eee2af68ca0dadc4477301159d.tar.gz freebsd-ports-gnome-313cc0b7699b92eee2af68ca0dadc4477301159d.tar.zst freebsd-ports-gnome-313cc0b7699b92eee2af68ca0dadc4477301159d.zip |
Fix for building/packaging on FreeBSD 4.x.
Diffstat (limited to 'lang/python27/Makefile')
-rw-r--r-- | lang/python27/Makefile | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/lang/python27/Makefile b/lang/python27/Makefile index f9311ace588b..e050eef23e78 100644 --- a/lang/python27/Makefile +++ b/lang/python27/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.42 1998/12/02 08:24:49 asami Exp $ +# $Id: Makefile,v 1.44 1999/02/18 09:37:34 thepish Exp $ # DISTNAME= pyth151 @@ -76,7 +76,8 @@ PLIST_GMP= lib/python1.5/lib-dynload/mpzmodule.so post-extract: cd ${WRKSRC}/Lib; ${SH} ${FILESDIR}/plat-freebsd2.sh; \ - ${SH} ${FILESDIR}/plat-freebsd3.sh + ${SH} ${FILESDIR}/plat-freebsd3.sh; \ + ${SH} ${FILESDIR}/plat-freebsd4.sh post-configure: ${CP} ${FILESDIR}/${SETUP_FILE} ${WRKSRC}/Modules/Setup @@ -91,14 +92,20 @@ LDFLAGS+= -rdynamic CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" .endif -pre-install: -.if ${OSVERSION} < 300000 - ${MKDIR} ${PREFIX}/lib/python1.5/plat-freebsd3 - ${INSTALL_DATA} ${WRKSRC}/Lib/plat-freebsd3/* ${PREFIX}/lib/python1.5/plat-freebsd3 -.else - ${MKDIR} ${PREFIX}/lib/python1.5/plat-freebsd2 - ${INSTALL_DATA} ${WRKSRC}/Lib/plat-freebsd2/* ${PREFIX}/lib/python1.5/plat-freebsd2 +.if ${OSVERSION} >= 400000 +PLATFORMS=plat-freebsd2 plat-freebsd3 +.elif ${OSVERSION} >= 300000 +PLATFORMS=plat-freebsd2 plat-freebsd4 +.else +PLATFORMS=plat-freebsd3 plat-freebsd4 .endif + +pre-install: + for platform in ${PLATFORMS}; do \ + ${MKDIR} ${PREFIX}/lib/python1.5/$$platform; \ + ${INSTALL_DATA} ${WRKSRC}/Lib/$$platform/* \ + ${PREFIX}/lib/python1.5/$$platform/; \ + done @${ECHO} ${PLIST_GMP} | sort -r -o ${PLIST} - ${PKGDIR}/PLIST post-install: |