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

Annotation of ports/Makefile, Revision 1.28

1.28    ! espie       1: # $OpenBSD: Makefile,v 1.27 2000/10/02 09:07:43 espie 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
                     34: SUBDIR += emulators
                     35: SUBDIR += games
                     36: #SUBDIR += german
                     37: SUBDIR += graphics
1.13      marc       38: SUBDIR += japanese
1.1       niklas     39: #SUBDIR += korean
1.6       niklas     40: SUBDIR += lang
1.1       niklas     41: SUBDIR += mail
1.10      angelos    42: SUBDIR += math
1.14      marc       43: SUBDIR += mbone
1.1       niklas     44: SUBDIR += misc
                     45: SUBDIR += net
                     46: SUBDIR += news
1.4       niklas     47: SUBDIR += plan9
1.7       angelos    48: SUBDIR += print
1.27      espie      49: SUBDIR += productivity
1.12      form       50: SUBDIR += russian
1.1       niklas     51: SUBDIR += security
                     52: SUBDIR += shells
                     53: SUBDIR += sysutils
                     54: SUBDIR += textproc
                     55: #SUBDIR += vietnamese
                     56: SUBDIR += www
1.5       niklas     57: SUBDIR += x11
1.23      espie      58: .endif
1.1       niklas     59:
1.8       niklas     60: PORTSTOP?=     yes
1.1       niklas     61:
                     62: .include <bsd.port.subdir.mk>
                     63:
                     64: index:
                     65:        @rm -f ${.CURDIR}/INDEX
                     66:        @make ${.CURDIR}/INDEX
                     67:
                     68: ${.CURDIR}/INDEX:
1.16      espie      69:        @echo "Generating INDEX..."
                     70:        @make describe ECHO_MSG="echo 1>&2" > ${.CURDIR}/INDEX
                     71:        @echo "Done."
1.1       niklas     72:
                     73: print-index:   ${.CURDIR}/INDEX
                     74:        @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      75:
                     76: print-licenses: ${.CURDIR}/INDEX
1.20      turan      77:        @printf "Port                                    PC PF DC DF Maint\n"
                     78:        @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     79:
                     80: search:        ${.CURDIR}/INDEX
                     81: .if !defined(key)
                     82:        @echo "The search target requires a keyword parameter,"
                     83:        @echo "e.g.: \"make search key=somekeyword\""
                     84: .else
1.15      marc       85:        @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     86: .endif
1.21      espie      87:
                     88:
                     89: MIRROR_MK?= ${.CURDIR}/distfiles/Makefile
                     90:
                     91: mirror-maker:
                     92:        @mkdir -p ${MIRROR_MK:H}
1.25      espie      93: # Indirection needed for broken OSes that don't grok this exec
                     94:        @echo "EXEC=exec" >${MIRROR_MK}
                     95:        @echo "default:: ftp cdrom" >>${MIRROR_MK}
1.21      espie      96:        @echo ".PHONY: default all ftp cdrom" >>${MIRROR_MK}
                     97:        @make fetch-makefile \
                     98:                ECHO_MSG='echo >&2' \
1.26      espie      99:                >>${MIRROR_MK}
1.22      espie     100:
                    101: DISTFILES_DB?=${.CURDIR}/infrastructure/db/locate.database
                    102:
                    103: distfiles-update-locatedb:
                    104:        @PORTSDIR=${.CURDIR} /bin/sh ${.CURDIR}/infrastructure/fetch/distfiles-update-locatedb ${DISTFILES_DB}
                    105:
                    106: .PHONY: mirror-maker index search distfiles-update-locatedb \
                    107:        print-licenses print-index