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

Diff for /ports/Makefile between version 1.69 and 1.81

version 1.69, 2012/05/28 09:38:04 version 1.81, 2018/11/16 09:24:09
Line 1 
Line 1 
 # $OpenBSD$  # $OpenBSD$
 # $FreeBSD: Makefile,v 1.36 1997/10/04 15:54:31 jkh Exp $  
 #  
   
   .if !defined(BSD_OWN_MK)
   .  include <bsd.own.mk>
   .endif
   
 PKGPATH =  PKGPATH =
 MIRROR_MK ?= ${.CURDIR}/distfiles/Makefile  
 DISTFILES_DB ?= ${.CURDIR}/infrastructure/db/locate.database  DISTFILES_DB ?= ${.CURDIR}/infrastructure/db/locate.database
   INDEX = ${.CURDIR}/INDEX
   
 .if defined(SUBDIR)  .if defined(SUBDIR)
 # nothing to do  # nothing to do
 .elif defined(key) || defined(name) || defined(category) || defined(author)  .elif defined(key) || defined(name) || defined(category) || defined(author)
   
 # set up subdirs from the index, assume it's up-to-date  # set up subdirs from the index, assume it's up-to-date
 _CMD = perl ${.CURDIR}/infrastructure/bin/retrieve-index index='${.CURDIR}/INDEX'  _CMD = perl ${.CURDIR}/infrastructure/bin/port-search-helper index='${INDEX}'
 .  if defined(key)  .  if defined(key)
 _CMD += key='${key}'  _CMD += key='${key}'
 .  endif  .  endif
Line 59 
Line 61 
 SUBDIR += multimedia  SUBDIR += multimedia
 SUBDIR += net  SUBDIR += net
 SUBDIR += news  SUBDIR += news
 SUBDIR += palm  
 SUBDIR += plan9  SUBDIR += plan9
 SUBDIR += print  SUBDIR += print
 SUBDIR += productivity  SUBDIR += productivity
 SUBDIR += russian  
 SUBDIR += security  SUBDIR += security
 SUBDIR += shells  SUBDIR += shells
 SUBDIR += sysutils  SUBDIR += sysutils
Line 77 
Line 77 
   
 index:  index:
         @rm -f ${.CURDIR}/INDEX          @rm -f ${.CURDIR}/INDEX
         @${_MAKE} ${.CURDIR}/INDEX          @${_MAKE} USE_CCACHE=No ${.CURDIR}/INDEX
   
 ${.CURDIR}/INDEX:  ${.CURDIR}/INDEX:
         @echo "Generating INDEX..."          @echo "Generating INDEX..."
         @${_MAKE} describe MACHINE_ARCH=i386 ECHO_MSG="echo 1>&2" > ${.CURDIR}/INDEX          @${_MAKE} describe MACHINE_ARCH=amd64 ARCH=amd64 ECHO_MSG="echo 1>&2" > ${.CURDIR}/INDEX
         @echo "Done."          @echo "Done."
   
 print-index:    ${.CURDIR}/INDEX  print-index:    ${INDEX}
         @awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nL-deps:\t%s\nB-deps:\t%s\nR-deps:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10); }' < ${.CURDIR}/INDEX          @awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nL-deps:\t%s\nB-deps:\t%s\nR-deps:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10); }' < ${INDEX}
   
 print-licenses: ${.CURDIR}/INDEX  print-licenses: ${INDEX}
         @printf "Port                                    PC PF DC DF Maint\n"          @printf "Port                                    PC PF DC DF Maint\n"
         @awk -F\| '{printf("%-40.39s%-3.2s%-3.2s%-3.2s%-3.2s%-25.25s\n",$$2,$$12,$$13,$$14,$$15,$$6);}' < ${.CURDIR}/INDEX          @awk -F\| '{printf("%-40.39s%-3.2s%-3.2s%-3.2s%-3.2s%-25.25s\n",$$2,$$12,$$13,$$14,$$15,$$6);}' < ${INDEX}
   
 search: ${.CURDIR}/INDEX  search: ${INDEX}
 .if !defined(key) && !defined(name)  .if !defined(key) && !defined(name)
         @echo "The search target requires a keyword or name parameter,"          @echo "The search target requires a keyword or name parameter,"
         @echo "e.g.: \"make search key=somekeyword\" \"make search name=somename\""          @echo "e.g.: \"make search key=somekeyword\" \"make search name=somename\""
 .else  .else
 .  if defined(key)  .  if defined(key)
         @egrep -i -- "${key}" ${.CURDIR}/INDEX | awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nL-deps:\t%s\nB-deps:\t%s\nR-deps:\t%s\nArchs:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10, $$11); }'          @egrep -i -- "${key}" ${INDEX} | awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nL-deps:\t%s\nB-deps:\t%s\nR-deps:\t%s\nArchs:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10, $$11); }'
 .  else  .  else
         @awk -F\| '$$1 ~ /${name}/ { printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nL-deps:\t%s\nB-deps:\t%s\nR-deps:\t%s\nArchs:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10, $$11); }' ${.CURDIR}/INDEX          @awk -F\| '$$1 ~ /${name}/ { printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nL-deps:\t%s\nB-deps:\t%s\nR-deps:\t%s\nArchs:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$10, $$11); }' ${INDEX}
 .  endif  .  endif
 .endif  .endif
   
   fix-permissions:
           @{ echo "COMMENT=test"; \
           echo "CATEGORIES=test"; \
           echo "PKGPATH=test/a"; \
           echo "DISTNAME=test"; \
           echo "PERMIT_PACKAGE_CDROM=Yes"; \
           echo "ECHO_MSG=:"; \
           echo ".include <bsd.port.mk>"; }|${MAKE} -f - fix-permissions
   
 homepages.html:  homepages.html:
         @echo '<html><ul>' >$@          @echo '<html><ul>' >$@
         @${_MAKE} homepage-links ECHO_MSG='echo >&2' >>$@          @${_MAKE} homepage-links ECHO_MSG='echo >&2' >>$@
Line 116 
Line 125 
             >${.CURDIR}/packages/${MACHINE_ARCH}/ftp/pkglocatedb              >${.CURDIR}/packages/${MACHINE_ARCH}/ftp/pkglocatedb
   
 .PHONY: index search distfiles-update-locatedb \  .PHONY: index search distfiles-update-locatedb \
         pkglocatedb print-licenses print-index          pkglocatedb print-licenses print-index fix-permissions

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.81