diff options
author | bapt <bapt@FreeBSD.org> | 2015-06-21 00:47:07 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-06-21 00:47:07 +0800 |
commit | a2b6bcb9240b9132d20ddc095aeaef7c9e0ae345 (patch) | |
tree | 8073b8fd6f09d60f8de4b9cdee03f22edf460716 | |
parent | 6089c1173cbb2e8eeeb6fcd35b62dff6518c7fbe (diff) | |
download | freebsd-ports-gnome-a2b6bcb9240b9132d20ddc095aeaef7c9e0ae345.tar.gz freebsd-ports-gnome-a2b6bcb9240b9132d20ddc095aeaef7c9e0ae345.tar.zst freebsd-ports-gnome-a2b6bcb9240b9132d20ddc095aeaef7c9e0ae345.zip |
Remove build-plist target not needed anymore and still generating deprecated
syntax
Use BROKEN_FreeBSD_8 to avoid playing with .pre.mk/.post.mk
-rw-r--r-- | cad/kicad-devel/Makefile | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/cad/kicad-devel/Makefile b/cad/kicad-devel/Makefile index 56edccec8a81..0a1f1ae3246e 100644 --- a/cad/kicad-devel/Makefile +++ b/cad/kicad-devel/Makefile @@ -158,29 +158,6 @@ PLIST_DIR_LIST= lib/kicad PLIST_SHAREDDIR_LIST= share/mimelnk/application \ share/mimelnk -build-plist: - ${RM} -f ${PLIST} - cd ${STAGEDIR}${PREFIX} && \ - (ls ${PLIST_FILE_LIST}; ${FIND} ${PLIST_DIR_LIST} -type f) | \ - ${SORT} >> ${PLIST} - ${FIND} ${STAGEDIR}${DATADIR} ${DOCSDIR} -type f | \ - ${SED} -e 's|${STAGEDIR}${DATADIR}|%%DATADIR%%|' \ - -e 's|${STAGEDIR}${DOCSDIR}|%%DOCSDIR%%|' | ${SORT} >> ${PLIST} - cd ${STAGEDIR}${PREFIX} && \ - ${FIND} ${PLIST_DIR_LIST} -type d | \ - ${SORT} -r | ${SED} -e 's|^|@dirrm |' >> ${PLIST} -.for subdir in ${PLIST_SHAREDDIR_LIST} - @${ECHO_CMD} '@unexec ${RMDIR} %D/${subdir} 2> /dev/null || true' >> ${PLIST} -.endfor - ${FIND} ${STAGEDIR}${DATADIR} ${STAGEDIR}${DOCSDIR} -type d | ${SORT} -r | \ - ${SED} -e 's|${STAGEDIR}${DATADIR}|%%DATADIR%%|' \ - -e 's|${STAGEDIR}${DOCSDIR}|%%DOCSDIR%%|' \ - -e 's|^|@dirrm |' >> ${PLIST} - -.include <bsd.port.pre.mk> - -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000 -BROKEN= does not build: absence of strtoll(3) -.endif +BROKEN_FreeBSD_8= does not build: absence of strtoll(3) -.include <bsd.port.post.mk> +.include <bsd.port.mk> |