2000-05-12 20:42:22 +02:00
|
|
|
# $NetBSD: Makefile,v 1.35 2000/05/12 18:42:22 sakamoto 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
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += archivers
|
|
|
|
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-10-03 10:03:18 +02:00
|
|
|
SUBDIR += comms
|
|
|
|
SUBDIR += converters
|
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
|
2000-05-12 20:42:22 +02:00
|
|
|
SUBDIR += fonts
|
1997-10-03 10:03:18 +02:00
|
|
|
SUBDIR += games
|
|
|
|
SUBDIR += graphics
|
1999-06-06 21:33:17 +02:00
|
|
|
SUBDIR += ham
|
1998-10-28 19:16:50 +01:00
|
|
|
SUBDIR += japanese
|
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
|
|
|
|
SUBDIR += security
|
|
|
|
SUBDIR += shells
|
|
|
|
SUBDIR += sysutils
|
|
|
|
SUBDIR += textproc
|
|
|
|
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
|
|
|
|
1999-08-22 03:30:15 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Generate list of all packages by extracting information from
|
|
|
|
# the category/README.html pages
|
|
|
|
#
|
|
|
|
readme-all:
|
2000-01-05 00:46:14 +01:00
|
|
|
@if [ -f README-all.html ]; then \
|
|
|
|
mv README-all.html README-all.html.BAK ; \
|
|
|
|
fi
|
1999-08-22 03:30:15 +02:00
|
|
|
@${MAKE} README-all.html
|
|
|
|
@if cmp -s README-all.html README-all.html.BAK ; then \
|
|
|
|
mv README-all.html.BAK README-all.html ; \
|
|
|
|
else \
|
|
|
|
rm -f README-all.html.BAK ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
README-all.html:
|
|
|
|
@rm -f $@.new
|
|
|
|
@rm -f $@.newsorted
|
|
|
|
@echo -n "Processing categories for $@:"
|
|
|
|
.for category in ${SUBDIR}
|
|
|
|
@if [ -f ${category}/README.html ]; then \
|
|
|
|
echo -n ' ${category}' ; \
|
|
|
|
grep '^<TR>' ${category}/README.html \
|
|
|
|
| sed -e 's|"|"${category}/|' \
|
|
|
|
-e 's| <TD>| <TD>(<A HREF="${category}/README.html">${category}</A>) <TD>|' \
|
|
|
|
-e 's|<TR>|<TR VALIGN=TOP>|' \
|
1999-10-22 02:54:23 +02:00
|
|
|
-e 's|<TD VALIGN=TOP>|<TD>|' \
|
1999-08-22 03:30:15 +02:00
|
|
|
>> $@.new ; \
|
|
|
|
fi
|
|
|
|
.endfor
|
|
|
|
@echo "."
|
1999-10-26 03:50:04 +02:00
|
|
|
@sort -f -t '">' +2 <$@.new >$@.newsorted
|
1999-10-22 02:54:23 +02:00
|
|
|
@wc -l $@.newsorted | awk '{ print $$1 }' >$@.npkgs
|
1999-08-22 03:30:15 +02:00
|
|
|
@cat templates/README.all \
|
|
|
|
| ${SED} \
|
1999-10-22 02:54:23 +02:00
|
|
|
-e '/%%NPKGS%%/r$@.npkgs' \
|
|
|
|
-e '/%%NPKGS%%/d' \
|
1999-08-22 03:30:15 +02:00
|
|
|
-e '/%%PKGS%%/r$@.newsorted' \
|
|
|
|
-e '/%%PKGS%%/d' \
|
|
|
|
> $@
|
1999-10-22 02:54:23 +02:00
|
|
|
@rm -f $@.npkgs
|
1999-08-22 03:30:15 +02:00
|
|
|
@rm -f $@.new
|
|
|
|
@rm -f $@.newsorted
|
2000-02-09 04:51:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme-ipv6:
|
|
|
|
@if [ -f README-IPv6.html ]; then \
|
|
|
|
mv README-IPv6.html README-IPv6.html.BAK ; \
|
|
|
|
fi
|
|
|
|
@${MAKE} README-IPv6.html
|
|
|
|
@if cmp -s README-IPv6.html README-IPv6.html.BAK ; then \
|
|
|
|
mv README-IPv6.html.BAK README-IPv6.html ; \
|
|
|
|
else \
|
|
|
|
rm -f README-IPv6.html.BAK ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
README-IPv6.html:
|
2000-03-30 15:01:49 +02:00
|
|
|
@grep -l '^BUILD_DEFS.*=.*USE_INET6' */*/Makefile \
|
|
|
|
| sed s,.Makefile,, >$@.pkgs
|
2000-02-09 04:51:12 +01:00
|
|
|
@fgrep -f $@.pkgs README-all.html | sort -t/ +1 >$@.trs
|
|
|
|
@cat templates/README.ipv6 \
|
|
|
|
| ${SED} \
|
|
|
|
-e '/%%TRS%%/r$@.trs' \
|
|
|
|
-e '/%%TRS%%/d' \
|
|
|
|
>$@
|
|
|
|
@${RM} $@.trs
|
|
|
|
@${RM} $@.pkgs
|
2000-05-11 13:25:18 +02:00
|
|
|
|
|
|
|
show-host-specific-pkgs:
|
|
|
|
@echo "HOST_SPECIFIC_PKGS= \\"; \
|
|
|
|
${MAKE} show-pkgsrc-dir | awk '/^===/ { next; } { printf("%s \\\n", $$1) }'; \
|
|
|
|
echo ""
|