diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2004-05-26 23:28:15 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2004-05-26 23:28:15 +0000 |
commit | 0f906db68c60a16ec753154d61fbfa0b10af8db3 (patch) | |
tree | ad87289ada0f27a48ad6449f87b297d46f04f23c /sysutils | |
parent | 139dd03af88bb4240591936f4d4c35d8b5c8e2ff (diff) | |
download | ports-0f906db68c60a16ec753154d61fbfa0b10af8db3.tar.gz ports-0f906db68c60a16ec753154d61fbfa0b10af8db3.zip |
Add two new metaports comprising a set of tools to work with the Ports
Collection. One is targeted to the audience of people who wish to
install ports from source and then maintain their system; the other,
more specialized, is intended for ports authors.
These might be good candidates for a "start here" reference for those
new to the ports collection and port maintenance. They might also serve
to introduce more people to fastest-cvsup, pkg_cutleaves, libchk, and
porttools, which IMHO would be A Good Thing.
PR: ports/65161
Notes
Notes:
svn path=/head/; revision=110096
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/port-authoring-tools/Makefile | 29 | ||||
-rw-r--r-- | sysutils/port-authoring-tools/pkg-descr | 2 | ||||
-rw-r--r-- | sysutils/port-maintenance-tools/Makefile | 32 | ||||
-rw-r--r-- | sysutils/port-maintenance-tools/pkg-descr | 5 |
4 files changed, 68 insertions, 0 deletions
diff --git a/sysutils/port-authoring-tools/Makefile b/sysutils/port-authoring-tools/Makefile new file mode 100644 index 000000000000..90d00da88487 --- /dev/null +++ b/sysutils/port-authoring-tools/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: port-authoring-tools +# Date created: 3 April 2004 +# Whom: Mark Linimon <linimon@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= port-authoring-tools +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= # empty +DISTFILES= # empty +EXTRACT_ONLY= # empty + +MAINTAINER= linimon@FreeBSD.org +COMMENT= "meta-port" for tools to test and submit changes to ports + +# note: portlint is brought in by porttools +RUN_DEPENDS= \ + cvsup:${PORTSDIR}/net/cvsup-without-gui \ + fastest_cvsup:${PORTSDIR}/sysutils/fastest_cvsup \ + libchk:${PORTSDIR}/sysutils/libchk \ + port:${PORTSDIR}/devel/porttools + +NO_BUILD= yes + +do-install: # empty + +.include <bsd.port.mk> diff --git a/sysutils/port-authoring-tools/pkg-descr b/sysutils/port-authoring-tools/pkg-descr new file mode 100644 index 000000000000..c2c9017f93cb --- /dev/null +++ b/sysutils/port-authoring-tools/pkg-descr @@ -0,0 +1,2 @@ +Here is a meta-port for a set of tools that will help port maintainers +to test and submit changes to the FreeBSD Ports Collection. diff --git a/sysutils/port-maintenance-tools/Makefile b/sysutils/port-maintenance-tools/Makefile new file mode 100644 index 000000000000..849c61047575 --- /dev/null +++ b/sysutils/port-maintenance-tools/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: port-maintenance-tools +# Date created: 3 April 2004 +# Whom: Mark Linimon <linimon@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= port-maintenance-tools +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= # empty +DISTFILES= # empty +EXTRACT_ONLY= # empty + +MAINTAINER= linimon@FreeBSD.org +COMMENT= "meta-port" for administrative tools to maintain ports + +# note: portuprade is brought in by pkg_cutleaves +RUN_DEPENDS= \ + cvsup:${PORTSDIR}/net/cvsup-without-gui \ + fastest_cvsup:${PORTSDIR}/sysutils/fastest_cvsup \ + pkg_cutleaves:${PORTSDIR}/sysutils/pkg_cutleaves \ + pkg_tree:${PORTSDIR}/sysutils/pkg_tree \ + porteasy:${PORTSDIR}/misc/porteasy \ + portell:${PORTSDIR}/misc/portell \ + portdowngrade:${PORTSDIR}/sysutils/portdowngrade + +NO_BUILD= yes + +do-install: # empty + +.include <bsd.port.mk> diff --git a/sysutils/port-maintenance-tools/pkg-descr b/sysutils/port-maintenance-tools/pkg-descr new file mode 100644 index 000000000000..e2f2646f3e94 --- /dev/null +++ b/sysutils/port-maintenance-tools/pkg-descr @@ -0,0 +1,5 @@ +Here is a meta-port for a collection of tools that will help you +manage your ports tree, both for installation, deinstallation, +updating, and browsing. Many FreeBSD administrators and users +find these tools to be helpful, especially when working with +building ports from their sources. |