diff options
author | edwin <edwin@FreeBSD.org> | 2007-10-04 02:24:29 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-10-04 02:24:29 +0000 |
commit | 27bcde2bbeb9705ab9909fa624324d2dabc8a3c3 (patch) | |
tree | 9732a636b574b55c7fbddc861c58994a5b2bb9d5 /net-p2p/btpeer | |
parent | 390824965052cc70180f9260020ce05f7bac73b3 (diff) | |
download | FreeBSD-ports-27bcde2bbeb9705ab9909fa624324d2dabc8a3c3.zip FreeBSD-ports-27bcde2bbeb9705ab9909fa624324d2dabc8a3c3.tar.gz |
Remove always-false/true conditions based on OSVERSION 500000
Diffstat (limited to 'net-p2p/btpeer')
-rw-r--r-- | net-p2p/btpeer/Makefile | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/net-p2p/btpeer/Makefile b/net-p2p/btpeer/Makefile index 6e4ff8d..0f56634 100644 --- a/net-p2p/btpeer/Makefile +++ b/net-p2p/btpeer/Makefile @@ -38,20 +38,13 @@ post-patch: -e 's|^LIBS.+$$|LIBS=-L${OPENSSLLIB} ${PTHREAD_LIBS} -L${LOCALBASE}/lib \\|' \ ${BUILD_WRKSRC}/${MAKEFILE} -do-install: -.for file in ${PROGRAM_FILES} - @${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin/${PORTNAME}-${file} +.for f in ${PROGRAM_FILES} +PLIST_FILES+= bin/${PORTNAME}-${f} .endfor -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -IGNORE= FreeBSD prior to 500000 does not support uuid(3) required\ - for building -.endif - -.for file in ${PROGRAM_FILES} -PLIST_FILES+= bin/${PORTNAME}-${file} +do-install: +.for f in ${PROGRAM_FILES} + @${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin/${PORTNAME}-${f} .endfor -.include <bsd.port.post.mk> +.include <bsd.port.mk> |