[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / ports

Annotation of ports/Makefile, Revision 1.32

1.32    ! kevlo       1: # $OpenBSD: Makefile,v 1.31 2001/08/01 20:46:14 naddy Exp $
1.1       niklas      2: # $FreeBSD: Makefile,v 1.36 1997/10/04 15:54:31 jkh Exp $
                      3: #
                      4:
1.26      espie       5: PKGPATH=
1.23      espie       6: .if defined(key) || defined(category) || defined(author)
                      7:
                      8: # set up subdirs from the index, assume it's up-to-date
                      9: _CMD=perl ${.CURDIR}/infrastructure/build/index-retrieve index='${.CURDIR}/INDEX'
                     10: .  if defined(key)
                     11: _CMD+=key='${key}'
                     12: .  endif
                     13: .  if defined(category)
                     14: _CMD+=category='${category}'
                     15: .  endif
1.24      espie      16: .  if defined(maintainer)
                     17: _CMD+=maintainer='${maintainer}'
1.23      espie      18: .  endif
                     19: SUBDIR != ${_CMD}
1.28      espie      20: .elif defined(SUBDIRLIST)
                     21: SUBDIR != sed -e 's,[  ]*\#.*,,' -e '/^[       ]*$$/d' ${SUBDIRLIST}
1.23      espie      22: .else
1.1       niklas     23: SUBDIR += archivers
1.2       angelos    24: SUBDIR += astro
1.3       niklas     25: SUBDIR += audio
1.1       niklas     26: SUBDIR += benchmarks
1.11      marc       27: SUBDIR += cad
1.1       niklas     28: SUBDIR += chinese
                     29: SUBDIR += comms
1.9       angelos    30: SUBDIR += converters
1.1       niklas     31: SUBDIR += databases
                     32: SUBDIR += devel
                     33: SUBDIR += editors
1.31      naddy      34: SUBDIR += education
1.1       niklas     35: SUBDIR += emulators
                     36: SUBDIR += games
                     37: #SUBDIR += german
                     38: SUBDIR += graphics
1.13      marc       39: SUBDIR += japanese
1.32    ! kevlo      40: SUBDIR += java
1.29      dugsong    41: SUBDIR += korean
1.6       niklas     42: SUBDIR += lang
1.1       niklas     43: SUBDIR += mail
1.10      angelos    44: SUBDIR += math
1.14      marc       45: SUBDIR += mbone
1.1       niklas     46: SUBDIR += misc
                     47: SUBDIR += net
                     48: SUBDIR += news
1.30      pvalchev   49: SUBDIR += palm
1.4       niklas     50: SUBDIR += plan9
1.7       angelos    51: SUBDIR += print
1.27      espie      52: SUBDIR += productivity
1.12      form       53: SUBDIR += russian
1.1       niklas     54: SUBDIR += security
                     55: SUBDIR += shells
                     56: SUBDIR += sysutils
                     57: SUBDIR += textproc
                     58: #SUBDIR += vietnamese
                     59: SUBDIR += www
1.5       niklas     60: SUBDIR += x11
1.23      espie      61: .endif
1.1       niklas     62:
1.8       niklas     63: PORTSTOP?=     yes
1.1       niklas     64:
                     65: .include <bsd.port.subdir.mk>
                     66:
                     67: index:
                     68:        @rm -f ${.CURDIR}/INDEX
                     69:        @make ${.CURDIR}/INDEX
                     70:
                     71: ${.CURDIR}/INDEX:
1.16      espie      72:        @echo "Generating INDEX..."
                     73:        @make describe ECHO_MSG="echo 1>&2" > ${.CURDIR}/INDEX
                     74:        @echo "Done."
1.1       niklas     75:
                     76: print-index:   ${.CURDIR}/INDEX
                     77:        @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
1.17      turan      78:
                     79: print-licenses: ${.CURDIR}/INDEX
1.20      turan      80:        @printf "Port                                    PC PF DC DF Maint\n"
                     81:        @awk -F\| '{printf("%-40.39s%-3.2s%-3.2s%-3.2s%-3.2s%-25.25s\n",$$2,$$11,$$12,$$13,$$14,$$6);}' < ${.CURDIR}/INDEX
1.1       niklas     82:
                     83: search:        ${.CURDIR}/INDEX
                     84: .if !defined(key)
                     85:        @echo "The search target requires a keyword parameter,"
                     86:        @echo "e.g.: \"make search key=somekeyword\""
                     87: .else
1.15      marc       88:        @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\nArchs:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10); }'
1.1       niklas     89: .endif
1.21      espie      90:
                     91:
                     92: MIRROR_MK?= ${.CURDIR}/distfiles/Makefile
                     93:
                     94: mirror-maker:
                     95:        @mkdir -p ${MIRROR_MK:H}
1.25      espie      96: # Indirection needed for broken OSes that don't grok this exec
                     97:        @echo "EXEC=exec" >${MIRROR_MK}
                     98:        @echo "default:: ftp cdrom" >>${MIRROR_MK}
1.21      espie      99:        @echo ".PHONY: default all ftp cdrom" >>${MIRROR_MK}
                    100:        @make fetch-makefile \
                    101:                ECHO_MSG='echo >&2' \
1.26      espie     102:                >>${MIRROR_MK}
1.22      espie     103:
                    104: DISTFILES_DB?=${.CURDIR}/infrastructure/db/locate.database
                    105:
                    106: distfiles-update-locatedb:
                    107:        @PORTSDIR=${.CURDIR} /bin/sh ${.CURDIR}/infrastructure/fetch/distfiles-update-locatedb ${DISTFILES_DB}
                    108:
                    109: .PHONY: mirror-maker index search distfiles-update-locatedb \
                    110:        print-licenses print-index