Remove pkgmanpages packages, the information contained in it has been

integrated in the pkgsrc guide.
This commit is contained in:
wiz 2007-03-02 09:46:41 +00:00
parent 0d335544b7
commit c869fc8c9e
6 changed files with 1 additions and 170 deletions

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.81 2006/12/05 18:24:39 gdt Exp $
# $NetBSD: Makefile,v 1.82 2007/03/02 09:46:41 wiz Exp $
#
COMMENT= Tools for use in the packages collection
@ -35,7 +35,6 @@ SUBDIR+= pkgdepgraph
SUBDIR+= pkgdiff
SUBDIR+= pkgfind
SUBDIR+= pkglint
SUBDIR+= pkgmanpages
SUBDIR+= pkgse
SUBDIR+= pkgsurvey
SUBDIR+= port2pkg

View file

@ -1,3 +0,0 @@
This is a very simple package, which keeps the most up-to-date
package manual page in the packages collection itself, so that
the two can be kept in synchronisation.

View file

@ -1,41 +0,0 @@
# $NetBSD: Makefile,v 1.12 2007/03/02 06:04:30 wiz Exp $
DISTNAME= pkgmanpages-20070302
CATEGORIES= pkgtools
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= agc@NetBSD.org
HOMEPAGE= http://www.pkgsrc.org/
COMMENT= Manual page(s) for the packages collection
NO_PKGTOOLS_REQD_CHECK= # defined
PKG_PRESERVE= # defined
NO_CHECKSUM= yes
NO_MTREE= yes
NO_CONFIGURE= yes
NO_BUILD= yes
INSTALLATION_DIRS= ${PKGMANDIR}/man7
.include "../../mk/bsd.prefs.mk"
PKG_TOOLS_PREFIX= ${PKG_TOOLS_BIN:C|/[^/]?bin$||}
# XXX This breaks for those who set their own LOCALBASE to "/usr" and also
# XXX set PKGMANDIR to be other than "share/man".
# XXX
.if !empty(PKG_TOOLS_PREFIX:M/usr)
PKGMANDIR= share/man
.endif
do-extract:
@${CP} -R ${FILESDIR} ${WRKSRC}
do-install:
${INSTALL_MAN} ${WRKSRC}/packages.7 ${PREFIX}/${PKGMANDIR}/man7
.include "../../mk/bsd.pkg.mk"
PREFIX:= ${PKG_TOOLS_PREFIX}

View file

@ -1,2 +0,0 @@
@comment $NetBSD: PLIST,v 1.1 2001/10/31 21:31:47 zuntum Exp $
man/man7/packages.7

View file

@ -1,5 +0,0 @@
$NetBSD: distinfo,v 1.2 2005/02/24 12:28:30 agc Exp $
SHA1 (pkgmanpages-19991222.tar.gz) = 03f2e9f066f788430a5019d7d04f6fffa1e5f9ce
RMD160 (pkgmanpages-19991222.tar.gz) = a7945b952a6d41281b77f961f959331ad6c171bd
Size (pkgmanpages-19991222.tar.gz) = 6867 bytes

View file

@ -1,117 +0,0 @@
.\" $NetBSD: packages.7,v 1.2 2007/03/02 06:04:30 wiz Exp $
.\"
.\" from: NetBSD: bsd.pkg.mk,v 1.89 1998/06/01 21:30:10 hubertf Exp
.\"
.\" This file is in the public domain.
.\"
.Dd March 2, 2007
.Dt PACKAGES 7
.Os
.Sh NAME
.Nm packages
.Nd
.Nx
user package variables
.Sh DESCRIPTION
.Em This manual page is obsolete .
.Em Please refer the pkgsrc guide at
.Pa /usr/pkgsrc/doc/pkgsrc.txt
.Em or
.Pa /usr/pkgsrc/doc/pkgsrc.html .
.Em The contents of this manual page will be moved there as time permits .
.Pp
This manual page describes the variables that users of the
.Nx
packages system can set to alter the configuration of the package system,
and individual packages.
.Sh PACKAGE SPECIFIC VARIABLES
This section documents variables that typically apply to an individual
package.
Non-Boolean variables without defaults are *mandatory*.
.Bl -tag -offset indent -width XXXXXXXX
.It PKGDIR
A direction containing any package creation files.
The default is
.Pa ${.CURDIR}/pkg .
.It PKG_DBDIR
Where package installation is recorded.
The default is
.Pa /var/db/pkg .
.It FORCE_PKG_REGISTER
If set, it will overwrite any existing package registration information in
.Pa ${PKG_DBDIR}/${PKGNAME} .
.It NO_MTREE
If set, will not invoke mtree from
.Pa bsd.pkg.mk
from the
.Dq install
target.
.It MTREE_FILE
The name of the mtree file.
The default is
.Pa /etc/mtree/BSD.x11.dist
if
.Dv USE_IMAKE
or
.Dv USE_X11BASE
is set, or
.Pa /etc/mtree/BSD.pkg.dist
otherwise.
.It NO_BUILD
Use a dummy (do-nothing) build target.
.It NO_CONFIGURE
Use a dummy (do-nothing) configure target.
.It NO_INSTALL
Use a dummy (do-nothing) install target.
.It NO_PACKAGE
Use a dummy (do-nothing) package target.
.It SCRIPTS_ENV
Additional environment variables passed to xmkmf.
.El
.Sh SPECIAL VARIABLES
Variables to change if you want a special behavior:
.Bl -tag -offset indent -width XXXXXXXX
.It PKG_VERBOSE
If set, print out more information about the automatic manual
page handling, and package deletion (see the
.Dq install ,
.Dq deinstall
and
.Dq update
targets),
and also sets PATCH_DEBUG as well.
.El
.Sh PACKAGE TARGETS
.Bl -tag -offset indent -width XXXXXXXX
.It mirror-distfiles
Mirror the distfile(s) if they are freely re-distributable.
If
.Dv NO_SRC_ON_FTP
is set in the package's Makefile (usually to
.Pa ${RESTRICTED} )
then that reason is printed, and the distfile is not mirrored.
.El
.Pp
Default sequence for
.Dq all
is: fetch checksum extract patch configure build.
.Pp
NEVER override the
.Dq regular
targets unless you want to open a major can of worms.
.Sh SEE ALSO
.Xr make 1 ,
.Xr mk.conf 5 ,
.Pa ${PKGSRCDIR}/mk/defaults/mk.conf
and
.Rs
.%T "Documentation on the NetBSD Package System"
.Re
.Pa ${PKGSRCDIR}/doc/pkgsrc.txt
.Sh HISTORY
This manual page is based upon the comments in the
.Pa bsd.pkg.mk
file, as distributed with
.Nx .
The sources to this are far
and varied across all free BSD projects.