diff options
author | jlam <jlam@pkgsrc.org> | 2003-08-30 22:51:11 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-08-30 22:51:11 +0000 |
commit | b2677a2cb0d685822071dbac41558e75e1bc7c6a (patch) | |
tree | 407d1b0e35c4d11b94b087f1a9728177bdf14f06 /pkgtools/xpkgwedge | |
parent | 8c1fa03cc0486b138e9285e732346648e11cbdc2 (diff) | |
download | pkgsrc-b2677a2cb0d685822071dbac41558e75e1bc7c6a.tar.gz |
Add definitions for DEINSTALL_EXTRA_TMPL and INSTALL_EXTRA_TMPL if
USE_PKGINSTALL is "YES". bsd.pkg.install.mk will no longer automatically
pick up a INSTALL/DEINSTALL script in the package directory and assume that
you want it for the corresponding *_EXTRA_TMPL variable.
Diffstat (limited to 'pkgtools/xpkgwedge')
-rw-r--r-- | pkgtools/xpkgwedge/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgtools/xpkgwedge/Makefile b/pkgtools/xpkgwedge/Makefile index c63d4bdac89..7e04ba6c38c 100644 --- a/pkgtools/xpkgwedge/Makefile +++ b/pkgtools/xpkgwedge/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2003/08/30 11:08:23 jlam Exp $ +# $NetBSD: Makefile,v 1.40 2003/08/30 22:51:29 jlam Exp $ DISTNAME= xpkgwedge-1.7 WRKSRC= ${WRKDIR} @@ -17,8 +17,10 @@ NO_CONFIGURE= # defined NO_BUILDLINK= # defined NO_CHECKSUM= # defined -USE_PKGINSTALL= YES -USE_X11= YES +USE_X11= YES +USE_PKGINSTALL= YES +DEINSTALL_EXTRA_TMPL+= ${.CURDIR}/DEINSTALL +INSTALL_EXTRA_TMPL+= ${.CURDIR}/INSTALL # FONT_PROGS are symlinked from ${X11BASE}/bin to ${PREFIX}/bin to allow # ${PREFIX}/bin/${prog} to always work. |