diff options
author | grant <grant@pkgsrc.org> | 2003-06-30 11:47:27 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-06-30 11:47:27 +0000 |
commit | 633bd0944f63bb6409a44ffc6df11c20855268f4 (patch) | |
tree | 0246c281b78a5775f4d34b663044626924398983 /archivers | |
parent | db7225537987e771f26e73b50767a5ec331f6f39 (diff) | |
download | pkgsrc-633bd0944f63bb6409a44ffc6df11c20855268f4.tar.gz |
install catman pages, like bootstrap-pkgsrc does.
bump to 20030630.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/pax/Makefile | 4 | ||||
-rw-r--r-- | archivers/pax/files/Makefile.in | 17 |
2 files changed, 10 insertions, 11 deletions
diff --git a/archivers/pax/Makefile b/archivers/pax/Makefile index ad328272898..7e65ab7239e 100644 --- a/archivers/pax/Makefile +++ b/archivers/pax/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2003/06/23 13:39:42 grant Exp $ +# $NetBSD: Makefile,v 1.3 2003/06/30 11:47:27 grant Exp $ # -DISTNAME= pax-20030623 +DISTNAME= pax-20030630 CATEGORIES= archivers pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/archivers/pax/files/Makefile.in b/archivers/pax/files/Makefile.in index c04c0acdf0e..ded84802164 100644 --- a/archivers/pax/files/Makefile.in +++ b/archivers/pax/files/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.2 2003/06/24 08:06:19 grant Exp $ +# $NetBSD: Makefile.in,v 1.3 2003/06/30 11:47:27 grant Exp $ srcdir = @srcdir@ prefix = @prefix@ @@ -41,13 +41,12 @@ distclean: clean rm -f Makefile config.cache config.h config.status rm -f configure.lineno config.log +# most systems we are aiming this at don't have the macros to format +# mandoc pages, so only install the catman versions. install: $(INSTALL) $(PROG) $(PREFIX)/sbin - -# don't install man pages for now -# $(INSTALL) -m 444 $(PROG).1 $(mandirman1) -# $(INSTALL) -m 444 $(PROG).cat1 $(mandircat1)/$(PROG).0 -# $(INSTALL) -m 444 cpio.1 $(mandirman1) -# $(INSTALL) -m 444 cpio.cat1 $(mandircat1)/cpio.0 -# $(INSTALL) -m 444 tar.1 $(mandirman1) -# $(INSTALL) -m 444 tar.cat1 $(mandircat1)/tar.0 + ln -f $(PREFIX)/bin/$(PROG) $(PREFIX)/bin/tar + ln -f $(PREFIX)/bin/$(PROG) $(PREFIX)/bin/cpio + $(INSTALL) -m 444 $(PROG).cat1 $(mandircat1)/$(PROG).0 + $(INSTALL) -m 444 cpio.cat1 $(mandircat1)/cpio.0 + $(INSTALL) -m 444 tar.cat1 $(mandircat1)/tar.0 |