diff options
author | grant <grant@pkgsrc.org> | 2004-05-15 06:03:11 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-05-15 06:03:11 +0000 |
commit | ba157118fa023b201552dedb5c15e7221ae571df (patch) | |
tree | 7c85321a5296184ddea95f4949abbbc577bd5035 /graphics/xpm | |
parent | 38944cff4a1c38ca7bce5da3654235588eb699bd (diff) | |
download | pkgsrc-ba157118fa023b201552dedb5c15e7221ae571df.tar.gz |
use PKGBASE instead of PKGNAME if we detect builtin xpm.
Diffstat (limited to 'graphics/xpm')
-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 && \ |