freebsd-ports/Makefile

63 lines
1.4 KiB
Makefile
Raw Normal View History

1997-12-13 00:55:08 -05:00
# $Id: Makefile,v 1.36 1997/10/04 15:54:31 jkh Exp $
#
SUBDIR += archivers
1996-10-24 07:20:46 -04:00
SUBDIR += astro
SUBDIR += audio
SUBDIR += benchmarks
1997-12-13 00:55:08 -05:00
SUBDIR += biology
SUBDIR += cad
1996-09-13 22:07:26 -04:00
SUBDIR += chinese
SUBDIR += comms
SUBDIR += converters
SUBDIR += databases
SUBDIR += devel
SUBDIR += editors
SUBDIR += emulators
SUBDIR += games
1997-07-31 05:33:05 -04:00
SUBDIR += german
SUBDIR += graphics
SUBDIR += japanese
SUBDIR += korean
SUBDIR += lang
SUBDIR += mail
SUBDIR += math
1996-11-07 07:30:23 -05:00
SUBDIR += mbone
1995-11-26 22:50:07 -05:00
SUBDIR += misc
SUBDIR += net
SUBDIR += news
1995-08-14 00:08:46 -04:00
SUBDIR += plan9
SUBDIR += print
SUBDIR += russian
SUBDIR += security
1997-08-19 03:10:14 -04:00
SUBDIR += shells
SUBDIR += sysutils
SUBDIR += textproc
1996-12-05 06:09:04 -05:00
SUBDIR += vietnamese
1995-11-26 22:50:07 -05:00
SUBDIR += www
SUBDIR += x11
PORTSTOP= yes
.include <bsd.port.subdir.mk>
index:
@rm -f ${.CURDIR}/INDEX
@make ${.CURDIR}/INDEX
${.CURDIR}/INDEX:
@echo -n "Generating INDEX - please wait.."
1995-03-20 22:57:19 -05:00
@make describe ECHO_MSG="echo > /dev/null" > ${.CURDIR}/INDEX
@echo " Done."
print-index: ${.CURDIR}/INDEX
@awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nB-deps:\t%s\nR-deps:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9); }' < ${.CURDIR}/INDEX
1997-03-10 17:59:36 -05:00
search: ${.CURDIR}/INDEX
.if !defined(key)
@echo "The search target requires a keyword parameter,"
@echo "e.g.: \"make search key=somekeyword\""
.else
@grep -i ${key} ${.CURDIR}/INDEX | awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nB-deps:\t%s\nR-deps:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9); }'
1997-03-10 17:59:36 -05:00
.endif