diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-04-28 06:20:23 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-04-28 06:20:23 +0000 |
commit | 8dddbbe6dda105882dacaf5b1f89f5ac88cd2ea9 (patch) | |
tree | 8a53e93aa6b5d27ef3bf7758c94ecfbf8c7fb7d0 /Mk/bsd.port.subdir.mk | |
parent | 8dd200a695ad1b361733273e584aa1986f89dbf6 (diff) | |
download | ports-8dddbbe6dda105882dacaf5b1f89f5ac88cd2ea9.tar.gz ports-8dddbbe6dda105882dacaf5b1f89f5ac88cd2ea9.zip |
(1) Make it clear that only I am allowed to commit to bsd.port.mk.
(2) New variable USE_ZIP -- will change EXTRACT_SUFX to ".zip" and
extract commands/arguments accordingly.
Submitted by: jseger
(3) Use ${GREP} in some places where grep was used.
(4) A little update to the MASTER_SITES_GNU list.
Submitted by: cpiazza@home.net
(5) New target clean-for-cdrom-list and clean-restricted-list -- will
print out commands to delete un-cdromable or unredistributable
files. Save them into a shell script for later use.
(6) Add CXXFLAGS="${CXXFLAGS}" to configure's environment.
Submitted by: reg@shale.csir.co.za
PR: 11353 (part 3/3)
(7) Print out a warning if you try to install without being root.
Abort if ${PREFIX} is not writable.
(8) Add web site to INDEX as tenth field.
Reviewed by: wosch, steve, scrappy
Notes
Notes:
svn path=/head/; revision=18174
Diffstat (limited to 'Mk/bsd.port.subdir.mk')
-rw-r--r-- | Mk/bsd.port.subdir.mk | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Mk/bsd.port.subdir.mk b/Mk/bsd.port.subdir.mk index 730636425562..88f3c56f01a3 100644 --- a/Mk/bsd.port.subdir.mk +++ b/Mk/bsd.port.subdir.mk @@ -1,5 +1,5 @@ # from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91 -# $Id: bsd.port.subdir.mk,v 1.28 1999/01/29 12:51:43 asami Exp $ +# $Id: bsd.port.subdir.mk,v 1.29 1999/04/12 09:03:41 asami Exp $ # # The include file <bsd.port.subdir.mk> contains the default targets # for building ports subdirectories. @@ -28,7 +28,9 @@ # Creating README.html for package. # # afterinstall, all, beforeinstall, build, checksum, clean, -# clean-for-cdrom, clean-restricted, configure, deinstall, +# clean-for-cdrom, clean-restricted, +# clean-for-cdrom-list, clean-restricted-list, +# configure, deinstall, # depend, depends, describe, extract, fetch, fetch-list, ignorelist, # install, package, package-loop, readmes, realinstall, reinstall, tags # @@ -81,6 +83,7 @@ ${SUBDIR}:: .for __target in all fetch fetch-list package package-loop extract configure \ build clean clean-for-cdrom clean-restricted \ + clean-for-cdrom-list clean-restricted-list \ deinstall depend depends describe distclean \ reinstall tags checksum \ ignorelist |