diff options
author | tnn <tnn> | 2007-04-22 20:12:43 +0000 |
---|---|---|
committer | tnn <tnn> | 2007-04-22 20:12:43 +0000 |
commit | 5e3d82fc4a73bbbbaaa0740b87224e24d81c6ec4 (patch) | |
tree | caa4a5f01dd799e69d59e888f594960680d97354 /lang | |
parent | 6d8d26c9660c6a569e8f18993c99cec9ec2ab3da (diff) | |
download | pkgsrc-5e3d82fc4a73bbbbaaa0740b87224e24d81c6ec4.tar.gz |
correct installation and plist on hpux
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python24/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lang/python24/Makefile b/lang/python24/Makefile index d6d393c6caf..1f1eb1b1177 100644 --- a/lang/python24/Makefile +++ b/lang/python24/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2006/11/03 07:15:41 joerg Exp $ +# $NetBSD: Makefile,v 1.30 2007/04/22 20:12:43 tnn Exp $ # DISTNAME= Python-2.4.3 @@ -51,6 +51,8 @@ PY_PLATNAME= ${LOWER_OPSYS} PY_PLATNAME= ${LOWER_OPSYS:C/\..*//} .elif ${OPSYS} == "SunOS" PY_PLATNAME= sunos${OS_VERSION:C/\..*//} +.elif ${OPSYS} == "HPUX" +PY_PLATNAME= hp-ux11 .else PY_PLATNAME= ${LOWER_OPSYS}${OS_VERSION:C/\..*//} .endif @@ -148,6 +150,12 @@ post-install: ${DESTDIR}${PREFIX}/lib/libpython2.4.dylib .endif +.if ${OPSYS} == "HPUX" +post-install: + ${LN} -fs ${DESTDIR}${PREFIX}/lib/libpython2.4.sl \ + ${DESTDIR}${PREFIX}/lib/libpython2.4.sl.1.0 +.endif + .include "../../archivers/bzip2/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" |