diff options
author | grant <grant> | 2004-05-15 06:03:11 +0000 |
---|---|---|
committer | grant <grant> | 2004-05-15 06:03:11 +0000 |
commit | ca0de5d0af86234d8a2a53adbfc3bc5e1466c139 (patch) | |
tree | 7c85321a5296184ddea95f4949abbbc577bd5035 /graphics | |
parent | fdd80f75a31f6ae6197e48388a47bab800e514d8 (diff) | |
download | pkgsrc-ca0de5d0af86234d8a2a53adbfc3bc5e1466c139.tar.gz |
use PKGBASE instead of PKGNAME if we detect builtin xpm.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/xpm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/xpm/Makefile b/graphics/xpm/Makefile index dff0fdaa8ea..07f58ded997 100644 --- a/graphics/xpm/Makefile +++ b/graphics/xpm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2004/04/22 23:52:19 minskim Exp $ +# $NetBSD: Makefile,v 1.37 2004/05/15 06:03:11 grant Exp $ DISTNAME= xpm-3.4k PKGREVISION= 1 @@ -19,10 +19,10 @@ CHECK_BUILTIN.xpm= yes .include "builtin.mk" .if !empty(IS_BUILTIN.xpm:M[yY][eE][sS]) -PKG_SKIP_REASON= "${PKGNAME} is part of your X11 distribution" +PKG_SKIP_REASON= "${PKGBASE} is part of your X11 distribution" .endif -.if (${OPSYS} == SunOS) +.if ${OPSYS} == "SunOS" post-install: cd ${PREFIX}/lib && \ ${RM} -f libXpm.so.4 && \ |