diff options
author | bapt <bapt@FreeBSD.org> | 2015-06-20 16:40:11 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-06-20 16:40:11 +0000 |
commit | 6089c1173cbb2e8eeeb6fcd35b62dff6518c7fbe (patch) | |
tree | 86de3feea888d37d57c3edbecb965e3a785efb22 | |
parent | 368ee4392e02181eca9a2b2a39bd911f15753cd5 (diff) | |
download | FreeBSD-ports-6089c1173cbb2e8eeeb6fcd35b62dff6518c7fbe.zip FreeBSD-ports-6089c1173cbb2e8eeeb6fcd35b62dff6518c7fbe.tar.gz |
Remove plist generator (we now have make makeplist and make check-plist)
This plist generator was pulling deprecated syntaxes
-rw-r--r-- | cad/freehdl/Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/cad/freehdl/Makefile b/cad/freehdl/Makefile index de274d3..58525f1 100644 --- a/cad/freehdl/Makefile +++ b/cad/freehdl/Makefile @@ -19,32 +19,4 @@ INSTALL_TARGET= install-strip INFO= fire -PLIST_TMP= ${WRKDIR}/plist_tmp/ - -PLIST_REPL= ${SED} "s|share/${PORTNAME}|%%DATADIR%%|1" - -plist: build - @${ECHO} "===> Rebuilding PLIST." - @${TOUCH} ${PLIST} - @${RM} ${PLIST} - @cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} \ - prefix=${PLIST_TMP} \ - mandir=${PLIST_TMP}/man \ - infodir=${PLIST_TMP}/info \ - ${INSTALL_TARGET} - @${RM} -rf ${PLIST_TMP}/man ${PLIST_TMP}/info - @${FIND} -d ${PLIST_TMP} -not -type d \ - | ${SED} "s|${PLIST_TMP}||1" \ - | ${PLIST_REPL} >> ${PLIST} - @${FIND} -d ${PLIST_TMP} -type d -mindepth 2 \ - | ${SED} "s|${PLIST_TMP}|@dirrm |1" \ - | ${PLIST_REPL} \ - | ${GREP} -E '%%DATADIR%%|freehdl' >> ${PLIST} - @${FIND} -d ${PLIST_TMP} -type d -mindepth 2 \ - | ${SED} "s|${PLIST_TMP}|@dirrmtry |1" \ - | ${PLIST_REPL} \ - | ${GREP} -vE '%%DATADIR%%|freehdl' >> ${PLIST} - @${RM} -rf ${PLIST_TMP} - .include <bsd.port.mk> |