diff options
author | asami <asami@FreeBSD.org> | 1996-11-11 06:50:45 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-11 06:50:45 +0000 |
commit | 3f0c80b2e9b04379f6a4937173027135e3f6e247 (patch) | |
tree | 642739cfa0961136bfd25e751aff714d5ea99b1c | |
parent | f2d4d5247b25a7e7cc85c2e16eccabdb0b451851 (diff) | |
download | FreeBSD-src-3f0c80b2e9b04379f6a4937173027135e3f6e247.zip FreeBSD-src-3f0c80b2e9b04379f6a4937173027135e3f6e247.tar.gz |
Change "CATEGORIES+=" to "CATEGORIES=" in sample Makefiles. It was
"+=" originally because (as I understand) Jordan used a sed script (or
was it perl?) to edit all the ports Makefiles automatically and he
wanted to make sure multiple CATEGORIES lines (they were inserted
after DISTNAME or something, there shouldn't have been multiple of
them to begin with but that's another story) won't be stepping on each
other's toes.
Reminded by: obrien
-rw-r--r-- | share/doc/handbook/porting.sgml | 6 | ||||
-rw-r--r-- | share/doc/handbook/ports.sgml | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/share/doc/handbook/porting.sgml b/share/doc/handbook/porting.sgml index ae81dbf..efe5d74 100644 --- a/share/doc/handbook/porting.sgml +++ b/share/doc/handbook/porting.sgml @@ -1,4 +1,4 @@ -<!-- $Id: porting.sgml,v 1.36 1996/11/07 03:59:05 max Exp $ --> +<!-- $Id: porting.sgml,v 1.37 1996/11/07 15:07:00 max Exp $ --> <!-- The FreeBSD Documentation Project --> <sect1><heading>Porting an existing piece of free software<label id="porting"></heading> @@ -161,7 +161,7 @@ The pattern is the year followed by the month. # DISTNAME= oneko-1.1b - CATEGORIES+= games + CATEGORIES= games MASTER_SITES= ftp://ftp.cs.columbia.edu/archives/X11R5/contrib/ MAINTAINER= asami@FreeBSD.ORG @@ -1159,7 +1159,7 @@ lib/libtcl.so.7.3 and then MASTER_SITES, and optionally EXTRACT_SUFX or DISTFILES] DISTNAME= xdvi PKGNAME= xdvi-pl18 - CATEGORIES+= print + CATEGORIES= print [do not forget the trailing slash ("/")!] MASTER_SITES= ftp://crl.dec.com/pub/X11/contrib/applications/ [set this if the source is not in the standard ".tar.gz" form] diff --git a/share/doc/handbook/ports.sgml b/share/doc/handbook/ports.sgml index 43bb9e7..4d172d0 100644 --- a/share/doc/handbook/ports.sgml +++ b/share/doc/handbook/ports.sgml @@ -1,4 +1,4 @@ -<!-- $Id: ports.sgml,v 1.15 1996/10/23 09:05:24 asami Exp $ --> +<!-- $Id: ports.sgml,v 1.16 1996/10/29 12:06:57 max Exp $ --> <!-- The FreeBSD Documentation Project --> <sect><heading>The Ports collection<label id="ports"></heading> @@ -352,7 +352,7 @@ installed. Here's the Makefile for bash:- # DISTNAME= bash-1.14.5 - CATEGORIES+= shells + CATEGORIES= shells MASTER_SITES= ftp://slc2.ins.cwru.edu/pub/dist/ MAINTAINER= ache@FreeBSD.ORG |