Index: head/ports-mgmt/portmaster/Makefile =================================================================== --- head/ports-mgmt/portmaster/Makefile (revision 456948) +++ head/ports-mgmt/portmaster/Makefile (revision 456949) @@ -1,53 +1,54 @@ # $FreeBSD$ PORTNAME= portmaster PORTVERSION= 3.18 +PORTREVISION= 1 CATEGORIES= ports-mgmt MAINTAINER= se@FreeBSD.org COMMENT= Manage your ports without external databases or languages LICENSE= BSD2CLAUSE USE_GITHUB= yes GH_ACCOUNT= freebsd OPTIONS_DEFINE= BASH ZSH OPTIONS_DEFAULT=BASH ZSH PLIST_FILES= sbin/portmaster \ etc/portmaster.rc.sample \ man/man8/portmaster.8.gz BASH_PLIST_FILES= etc/bash_completion.d/portmaster.sh ZSH_PLIST_FILES= share/zsh/site-functions/_portmaster NO_ARCH= yes verify: checksum do-build: .for file in portmaster files/portmaster.rc.sample files/portmaster.8 ${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' \ -e 's#%%PKGNAME%%#${PKGNAME}#g' ${WRKSRC}/${file} .endfor do-install: ${INSTALL_SCRIPT} ${WRKSRC}/portmaster \ ${STAGEDIR}${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/files/portmaster.rc.sample \ ${STAGEDIR}${PREFIX}/etc ${INSTALL_MAN} ${WRKSRC}/files/portmaster.8 \ ${STAGEDIR}${MAN8PREFIX}/man/man8 post-install-BASH-on: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/files/bash-completions \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d/portmaster.sh post-install-ZSH-on: ${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/files/zsh-completions \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_portmaster .include Index: head/ports-mgmt/portmaster/files/patch-portmaster =================================================================== --- head/ports-mgmt/portmaster/files/patch-portmaster (nonexistent) +++ head/ports-mgmt/portmaster/files/patch-portmaster (revision 456949) @@ -0,0 +1,22 @@ +--- portmaster.orig 2017-12-21 09:02:44 UTC ++++ portmaster +@@ -2264,12 +2264,14 @@ make_dep_list () { + + for dep_type in $*; do + case $dep_type in +- all-depends-list) +- var_opt="$var_opt -V BUILD_DEPENDS -V LIB_DEPENDS -V RUN_DEPENDS" ;; +- build-depends-list) +- var_opt="$var_opt -V BUILD_DEPENDS -V LIB_DEPENDS" ;; ++ all-depends-list|build-depends-list) ++ var_opt="$var_opt -V PKG_DEPENDS -V EXTRACT_DEPENDS \ ++ -V PATCH_DEPENDS -V FETCH_DEPENDS -V BUILD_DEPENDS -V LIB_DEPENDS" ++ [ "$dep_type" = all-depends-list ] && var_opt="$var_opt -V RUN_DEPENDS" ;; + run-depends-list) +- var_opt="$var_opt -V RUN_DEPENDS -V LIB_DEPENDS" ;; ++ var_opt="$var_opt -V RUN_DEPENDS -V LIB_DEPENDS" ;; ++ test-depends-list) ++ var_opt="$var_opt -V TEST_DEPENDS" ;; + *) + fail "make_dep_list: Unsupported option '$dep_type'" + esac Property changes on: head/ports-mgmt/portmaster/files/patch-portmaster ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property