summaryrefslogtreecommitdiff
path: root/ports-mgmt/pkg_cleanup/Makefile
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2015-09-05 11:19:17 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2015-09-05 11:19:17 +0000
commit2ca1572adc55ffbff8e7272c919d9b0db7cfcd04 (patch)
tree6e406058ac0695d4fef3ea2a2ac5f85f60a01c1b /ports-mgmt/pkg_cleanup/Makefile
parentUpdate to 4.6. (diff)
- Mute extraction commands and do not use shell wildcards if possible
- Remove IGNORE on FreeBSD versions before 900038, they're unsupported - Do not claim that port is broken on PowerPC (builds and links fine) - Remove custom naive `do-build' target: add missing `all' target to supplied Makefile instead
Notes
Notes: svn path=/head/; revision=396165
Diffstat (limited to 'ports-mgmt/pkg_cleanup/Makefile')
-rw-r--r--ports-mgmt/pkg_cleanup/Makefile20
1 files changed, 4 insertions, 16 deletions
diff --git a/ports-mgmt/pkg_cleanup/Makefile b/ports-mgmt/pkg_cleanup/Makefile
index 09294c7027d7..db6dc7fcc040 100644
--- a/ports-mgmt/pkg_cleanup/Makefile
+++ b/ports-mgmt/pkg_cleanup/Makefile
@@ -14,24 +14,12 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_FILES= sbin/pkg_cleanup \
man/man1/pkg_cleanup.1.gz
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 900000 && ${OSVERSION} < 900038
-IGNORE= requires r223289 or higher to compile
-.endif
-.if ${ARCH} == "powerpc" && ${OSVERSION} > 900000
-BROKEN= Does not build on powerpc-9: undefined reference to 'sqrt'
-.endif
-
do-extract:
- ${MKDIR} ${WRKSRC}
- ${CP} -R ${FILESDIR}/* ${WRKSRC}
-
-do-build:
- make -C ${WRKSRC}
+ @${MKDIR} ${WRKSRC}
+ @${CP} -a ${FILESDIR}/ ${WRKSRC}
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/pkg_cleanup ${STAGEDIR}${PREFIX}/sbin/pkg_cleanup
+ ${INSTALL_PROGRAM} ${WRKSRC}/pkg_cleanup ${STAGEDIR}${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/pkg_cleanup.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>