diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-06-20 16:47:07 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-06-20 16:47:07 +0000 |
commit | 95b232b47d4a3c67a8ad5e6a420473c732a68443 (patch) | |
tree | 8073b8fd6f09d60f8de4b9cdee03f22edf460716 /cad | |
parent | 3db887160e1b26e6f7872fe67e71321124c38c32 (diff) | |
download | freebsd-ports-95b232b47d4a3c67a8ad5e6a420473c732a68443.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
Diffstat (limited to 'cad')
-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> |