1999-04-16 01:17:30 +02:00
|
|
|
# $NetBSD: Makefile,v 1.23 1999/04/15 23:17:30 rh Exp $
|
1997-10-03 10:03:18 +02:00
|
|
|
# FreeBSD Id: Makefile,v 1.35 1997/08/19 07:10:01 fenner Exp
|
|
|
|
#
|
|
|
|
|
1999-03-03 21:19:05 +01:00
|
|
|
.include "mk/bsd.prefs.mk"
|
Allow for customised groups of packages at the top-level of pkgsrc.
If SPECIFIC_PKGS is defined (at the top-level of pkgsrc), then instead of
looping through all the categories and then all the packages within that,
simply loop through ${SITE_SPECIFIC_PKGS}, ${HOST_SPECIFIC_PKGS},
${GROUP_SPECIFIC_PKGS} and ${USER_SPECIFIC_PKGS}, which are whitespace
separated lists of categories/packages e.g.
SITE_SPECIFIC_PKGS+= devel/cvs security/ssh
The default behaviour is unchanged - if SPECIFIC_PKGS is not defined,
the whole hierarchy will be traversed.
Modify mk.conf.example to reflect the settings of SPECIFIC_PKGS,
SITE_SPECIFIC_PKGS, HOST_SPECIFIC_PKGS, GROUP_SPECIFIC_PKGS and
USER_SPECIFIC_PKGS.
Modify the ispell package to use the make definition ISPELL_LANG,
rather than just LANG (which can clash with the environment variable
of the same name), and modify mk.conf.example accordingly.
1999-02-21 22:25:02 +01:00
|
|
|
|
|
|
|
.ifdef SPECIFIC_PKGS
|
|
|
|
SUBDIR+= ${SITE_SPECIFIC_PKGS}
|
|
|
|
SUBDIR+= ${HOST_SPECIFIC_PKGS}
|
|
|
|
SUBDIR+= ${GROUP_SPECIFIC_PKGS}
|
|
|
|
SUBDIR+= ${USER_SPECIFIC_PKGS}
|
|
|
|
.else
|
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
|
1999-04-16 01:17:30 +02:00
|
|
|
SUBDIR += biology
|
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
|
Allow for customised groups of packages at the top-level of pkgsrc.
If SPECIFIC_PKGS is defined (at the top-level of pkgsrc), then instead of
looping through all the categories and then all the packages within that,
simply loop through ${SITE_SPECIFIC_PKGS}, ${HOST_SPECIFIC_PKGS},
${GROUP_SPECIFIC_PKGS} and ${USER_SPECIFIC_PKGS}, which are whitespace
separated lists of categories/packages e.g.
SITE_SPECIFIC_PKGS+= devel/cvs security/ssh
The default behaviour is unchanged - if SPECIFIC_PKGS is not defined,
the whole hierarchy will be traversed.
Modify mk.conf.example to reflect the settings of SPECIFIC_PKGS,
SITE_SPECIFIC_PKGS, HOST_SPECIFIC_PKGS, GROUP_SPECIFIC_PKGS and
USER_SPECIFIC_PKGS.
Modify the ispell package to use the make definition ISPELL_LANG,
rather than just LANG (which can clash with the environment variable
of the same name), and modify mk.conf.example accordingly.
1999-02-21 22:25:02 +01:00
|
|
|
.endif
|
1997-10-03 10:03:18 +02:00
|
|
|
|
1999-03-03 21:19:05 +01:00
|
|
|
PKGSRCTOP= yes
|
|
|
|
|
|
|
|
.include "mk/bsd.pkg.subdir.mk"
|
1997-10-03 10:03:18 +02:00
|
|
|
|
|
|
|
index:
|
|
|
|
@rm -f ${.CURDIR}/INDEX
|
Allow for customised groups of packages at the top-level of pkgsrc.
If SPECIFIC_PKGS is defined (at the top-level of pkgsrc), then instead of
looping through all the categories and then all the packages within that,
simply loop through ${SITE_SPECIFIC_PKGS}, ${HOST_SPECIFIC_PKGS},
${GROUP_SPECIFIC_PKGS} and ${USER_SPECIFIC_PKGS}, which are whitespace
separated lists of categories/packages e.g.
SITE_SPECIFIC_PKGS+= devel/cvs security/ssh
The default behaviour is unchanged - if SPECIFIC_PKGS is not defined,
the whole hierarchy will be traversed.
Modify mk.conf.example to reflect the settings of SPECIFIC_PKGS,
SITE_SPECIFIC_PKGS, HOST_SPECIFIC_PKGS, GROUP_SPECIFIC_PKGS and
USER_SPECIFIC_PKGS.
Modify the ispell package to use the make definition ISPELL_LANG,
rather than just LANG (which can clash with the environment variable
of the same name), and modify mk.conf.example accordingly.
1999-02-21 22:25:02 +01:00
|
|
|
@${MAKE} ${.CURDIR}/INDEX
|
1997-10-03 10:03:18 +02:00
|
|
|
|
|
|
|
${.CURDIR}/INDEX:
|
|
|
|
@echo -n "Generating INDEX - please wait.."
|
Allow for customised groups of packages at the top-level of pkgsrc.
If SPECIFIC_PKGS is defined (at the top-level of pkgsrc), then instead of
looping through all the categories and then all the packages within that,
simply loop through ${SITE_SPECIFIC_PKGS}, ${HOST_SPECIFIC_PKGS},
${GROUP_SPECIFIC_PKGS} and ${USER_SPECIFIC_PKGS}, which are whitespace
separated lists of categories/packages e.g.
SITE_SPECIFIC_PKGS+= devel/cvs security/ssh
The default behaviour is unchanged - if SPECIFIC_PKGS is not defined,
the whole hierarchy will be traversed.
Modify mk.conf.example to reflect the settings of SPECIFIC_PKGS,
SITE_SPECIFIC_PKGS, HOST_SPECIFIC_PKGS, GROUP_SPECIFIC_PKGS and
USER_SPECIFIC_PKGS.
Modify the ispell package to use the make definition ISPELL_LANG,
rather than just LANG (which can clash with the environment variable
of the same name), and modify mk.conf.example accordingly.
1999-02-21 22:25:02 +01:00
|
|
|
@${MAKE} describe ECHO_MSG="echo > /dev/null" > ${.CURDIR}/INDEX
|
1997-10-03 10:03:18 +02:00
|
|
|
@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,"
|
Allow for customised groups of packages at the top-level of pkgsrc.
If SPECIFIC_PKGS is defined (at the top-level of pkgsrc), then instead of
looping through all the categories and then all the packages within that,
simply loop through ${SITE_SPECIFIC_PKGS}, ${HOST_SPECIFIC_PKGS},
${GROUP_SPECIFIC_PKGS} and ${USER_SPECIFIC_PKGS}, which are whitespace
separated lists of categories/packages e.g.
SITE_SPECIFIC_PKGS+= devel/cvs security/ssh
The default behaviour is unchanged - if SPECIFIC_PKGS is not defined,
the whole hierarchy will be traversed.
Modify mk.conf.example to reflect the settings of SPECIFIC_PKGS,
SITE_SPECIFIC_PKGS, HOST_SPECIFIC_PKGS, GROUP_SPECIFIC_PKGS and
USER_SPECIFIC_PKGS.
Modify the ispell package to use the make definition ISPELL_LANG,
rather than just LANG (which can clash with the environment variable
of the same name), and modify mk.conf.example accordingly.
1999-02-21 22:25:02 +01:00
|
|
|
@echo "e.g.: \"${MAKE} search key=somekeyword\""
|
1997-10-03 10:03:18 +02:00
|
|
|
.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
|
Allow for customised groups of packages at the top-level of pkgsrc.
If SPECIFIC_PKGS is defined (at the top-level of pkgsrc), then instead of
looping through all the categories and then all the packages within that,
simply loop through ${SITE_SPECIFIC_PKGS}, ${HOST_SPECIFIC_PKGS},
${GROUP_SPECIFIC_PKGS} and ${USER_SPECIFIC_PKGS}, which are whitespace
separated lists of categories/packages e.g.
SITE_SPECIFIC_PKGS+= devel/cvs security/ssh
The default behaviour is unchanged - if SPECIFIC_PKGS is not defined,
the whole hierarchy will be traversed.
Modify mk.conf.example to reflect the settings of SPECIFIC_PKGS,
SITE_SPECIFIC_PKGS, HOST_SPECIFIC_PKGS, GROUP_SPECIFIC_PKGS and
USER_SPECIFIC_PKGS.
Modify the ispell package to use the make definition ISPELL_LANG,
rather than just LANG (which can clash with the environment variable
of the same name), and modify mk.conf.example accordingly.
1999-02-21 22:25:02 +01:00
|
|
|
|