diff options
author | hubertf <hubertf@pkgsrc.org> | 1997-11-30 22:28:34 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1997-11-30 22:28:34 +0000 |
commit | f4914c73128394a0bda9c58e578702ed47b16dd2 (patch) | |
tree | 40cf00afea2aef9aea797dbe294e7c149e60a331 | |
parent | a2109208dc9e6aa83e9ff88fb70a832a38e948b7 (diff) | |
download | pkgsrc-f4914c73128394a0bda9c58e578702ed47b16dd2.tar.gz |
- Remove ranlib from PLIST file so pkg_delete don't whine because
of different MD5 checksum; Fixes PR pkg/4609 by Matthias Scheler
<tron@lyssa.owl.de>
- change "ldconfig" to "ldconfig .. || true" to work around missing
ldconfig on alpha (and others?)
-rw-r--r-- | graphics/xpm/Makefile | 4 | ||||
-rw-r--r-- | graphics/xpm/pkg/PLIST | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/graphics/xpm/Makefile b/graphics/xpm/Makefile index fa906da2012..1bcda0583f7 100644 --- a/graphics/xpm/Makefile +++ b/graphics/xpm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1997/11/06 12:45:31 agc Exp $ +# $NetBSD: Makefile,v 1.4 1997/11/30 22:28:34 hubertf Exp $ # New ports collection makefile for: xpm # Version required: 3.4j # Date created: 14 September 1994 @@ -16,6 +16,6 @@ USE_IMAKE= yes CAT1= sxpm.0 post-install: - ${LDCONFIG} -m ${PREFIX}/lib + ${LDCONFIG} -m ${PREFIX}/lib || true .include <bsd.port.mk> diff --git a/graphics/xpm/pkg/PLIST b/graphics/xpm/pkg/PLIST index 358ca510769..28758945669 100644 --- a/graphics/xpm/pkg/PLIST +++ b/graphics/xpm/pkg/PLIST @@ -1,8 +1,7 @@ -@comment $NetBSD: PLIST,v 1.3 1997/11/06 12:46:49 agc Exp $ +@comment $NetBSD: PLIST,v 1.4 1997/11/30 22:28:36 hubertf Exp $ bin/sxpm lib/libXpm.a lib/libXpm.so.4.10 -@exec /sbin/ldconfig -m %B -@exec ranlib %D/lib/libXpm.a +@exec /sbin/ldconfig -m %B || true include/X11/xpm.h man/cat1/sxpm.0.gz |