diff options
author | jlam <jlam@pkgsrc.org> | 2006-03-20 18:15:37 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-03-20 18:15:37 +0000 |
commit | 741aecb60794fe08a7a2c61bfcc516bee56c6a2b (patch) | |
tree | 0f05903ff61fcd859ec72aa544fa1e5eda653bf6 /archivers/gtar-info/Makefile | |
parent | 6132a5c7603ce3eb9c6eaaf83c45b47f9e30fa6d (diff) | |
download | pkgsrc-741aecb60794fe08a7a2c61bfcc516bee56c6a2b.tar.gz |
* Nuke all references to and definitions of INFO_DIR in package Makefiles
and replace with appropriate references to PKGINFODIR instead.
* Properly account for split info files during installation.
* Move info file listings directly into the package PLISTs.
This fixes info-file-related PLIST problems.
Diffstat (limited to 'archivers/gtar-info/Makefile')
-rw-r--r-- | archivers/gtar-info/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/archivers/gtar-info/Makefile b/archivers/gtar-info/Makefile index a99a0c0645c..d68c8f60ec2 100644 --- a/archivers/gtar-info/Makefile +++ b/archivers/gtar-info/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2006/03/04 21:28:52 jlam Exp $ +# $NetBSD: Makefile,v 1.23 2006/03/20 18:15:37 jlam Exp $ # DISTNAME= tar-1.15.1 @@ -12,16 +12,15 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.gnu.org/software/tar/tar.html COMMENT= Info format documentation for the GNU tape archiver -INFO_FILES= tar.info - PKG_INSTALLATION_TYPES= overwrite pkgviews NO_CONFIGURE= yes NO_BUILD= yes +INFO_FILES= # PLIST -INSTALLATION_DIRS= ${INFO_DIR} +INSTALLATION_DIRS= ${PKGINFODIR} do-install: - ${INSTALL_DATA} ${WRKSRC}/doc/tar.info ${PREFIX}/${INFO_DIR} + ${INSTALL_DATA} ${WRKSRC}/doc/tar.info ${PREFIX}/${PKGINFODIR} .include "../../mk/bsd.pkg.mk" |