1998-10-28 19:16:50 +01:00
|
|
|
# $NetBSD: Makefile,v 1.18 1998/10/28 18:16:50 garbled Exp $
|
1997-10-03 10:03:18 +02:00
|
|
|
# FreeBSD Id: Makefile,v 1.35 1997/08/19 07:10:01 fenner Exp
|
|
|
|
#
|
|
|
|
|
1998-05-17 15:30:41 +02:00
|
|
|
#SUBDIR += ai
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += archivers
|
1997-11-27 01:01:23 +01:00
|
|
|
#SUBDIR += astro
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += audio
|
|
|
|
SUBDIR += benchmarks
|
1998-04-13 17:41:59 +02:00
|
|
|
SUBDIR += cad
|
1997-11-27 01:01:23 +01:00
|
|
|
#SUBDIR += chinese
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += comms
|
|
|
|
SUBDIR += converters
|
1998-08-21 00:08:40 +02:00
|
|
|
SUBDIR += corba
|
1998-08-12 04:45:27 +02:00
|
|
|
SUBDIR += cross
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += databases
|
|
|
|
SUBDIR += devel
|
|
|
|
SUBDIR += editors
|
|
|
|
SUBDIR += emulators
|
|
|
|
SUBDIR += games
|
1997-11-27 01:01:23 +01:00
|
|
|
#SUBDIR += german
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += graphics
|
1998-10-28 19:16:50 +01:00
|
|
|
SUBDIR += japanese
|
1997-11-27 01:01:23 +01:00
|
|
|
#SUBDIR += korean
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += lang
|
|
|
|
SUBDIR += mail
|
1998-04-13 17:41:59 +02:00
|
|
|
SUBDIR += math
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += mbone
|
1998-07-24 16:52:22 +02:00
|
|
|
SUBDIR += meta-pkgs
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += misc
|
|
|
|
SUBDIR += net
|
|
|
|
SUBDIR += news
|
1998-10-14 01:37:03 +02:00
|
|
|
SUBDIR += parallel
|
1998-08-28 14:26:50 +02:00
|
|
|
SUBDIR += pkgtools
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += plan9
|
|
|
|
SUBDIR += print
|
1997-11-27 01:01:23 +01:00
|
|
|
#SUBDIR += russian
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += security
|
|
|
|
SUBDIR += shells
|
|
|
|
SUBDIR += sysutils
|
|
|
|
SUBDIR += textproc
|
1997-11-27 01:01:23 +01:00
|
|
|
#SUBDIR += vietnamese
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += www
|
|
|
|
SUBDIR += x11
|
|
|
|
|
1998-05-15 14:14:24 +02:00
|
|
|
PKGSRCTOP= yes
|
1997-10-03 10:03:18 +02:00
|
|
|
|
1998-04-15 12:38:06 +02:00
|
|
|
.include "mk/bsd.pkg.subdir.mk"
|
1997-10-03 10:03:18 +02:00
|
|
|
|
|
|
|
index:
|
|
|
|
@rm -f ${.CURDIR}/INDEX
|
|
|
|
@make ${.CURDIR}/INDEX
|
|
|
|
|
|
|
|
${.CURDIR}/INDEX:
|
|
|
|
@echo -n "Generating INDEX - please wait.."
|
|
|
|
@make describe ECHO_MSG="echo > /dev/null" > ${.CURDIR}/INDEX
|
|
|
|
@echo " Done."
|
|
|
|
|
|
|
|
print-index: ${.CURDIR}/INDEX
|
1998-03-08 15:26:26 +01:00
|
|
|
@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\nArch:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10); }' < ${.CURDIR}/INDEX
|
1997-10-03 10:03:18 +02:00
|
|
|
|
|
|
|
search: ${.CURDIR}/INDEX
|
|
|
|
.if !defined(key)
|
|
|
|
@echo "The search target requires a keyword parameter,"
|
|
|
|
@echo "e.g.: \"make search key=somekeyword\""
|
|
|
|
.else
|
1998-03-08 15:26:26 +01:00
|
|
|
@grep ${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\nArch:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10); }'
|
1997-10-03 10:03:18 +02:00
|
|
|
.endif
|