diff options
author | asami <asami@FreeBSD.org> | 1999-04-28 14:20:23 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1999-04-28 14:20:23 +0800 |
commit | 2a64c6c85ec242c8792cfa4ef6e11935aec3a6a7 (patch) | |
tree | e9f75c180900bf0c9a84a91c6ae92e6a24ef9320 /Mk/bsd.port.subdir.mk | |
parent | cb9e6ed1096a252299cce0d50997f889e2ec5380 (diff) | |
download | freebsd-ports-gnome-2a64c6c85ec242c8792cfa4ef6e11935aec3a6a7.tar.gz freebsd-ports-gnome-2a64c6c85ec242c8792cfa4ef6e11935aec3a6a7.tar.zst freebsd-ports-gnome-2a64c6c85ec242c8792cfa4ef6e11935aec3a6a7.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
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 |