diff options
author | mezz <mezz@FreeBSD.org> | 2008-11-03 12:34:56 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2008-11-03 12:34:56 +0800 |
commit | 1e3377c371b3ae6062763b9051d49104d5e4532b (patch) | |
tree | d1187f77cff6542b86293c4b0e23fa767bc7682f /net-p2p | |
parent | cd639572487640c1e26f757a0295f41caffac918 (diff) | |
download | freebsd-ports-gnome-1e3377c371b3ae6062763b9051d49104d5e4532b.tar.gz freebsd-ports-gnome-1e3377c371b3ae6062763b9051d49104d5e4532b.tar.zst freebsd-ports-gnome-1e3377c371b3ae6062763b9051d49104d5e4532b.zip |
-LOCALBASE -> (MAN)PREFIX to install its own files.
-No need the bsd.port.pre.mk and bsd.port.post.mk.
-Minor clean up.
Approved by: wen heping <wenheping@gmail.com> (maintainer)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/unworkable/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/net-p2p/unworkable/Makefile b/net-p2p/unworkable/Makefile index 75e2cc25a63b..22ecb3286d7a 100644 --- a/net-p2p/unworkable/Makefile +++ b/net-p2p/unworkable/Makefile @@ -14,7 +14,6 @@ MAINTAINER= wenheping@gmail.com COMMENT= A Free BitTorrent Implementation LIB_DEPENDS= event:${PORTSDIR}/devel/libevent -# crypto:${PORTDIR}/security/openssl USE_SCONS= yes USE_OPENSSL= yes @@ -24,9 +23,8 @@ PLIST_FILES= bin/unworkable MAN1= unworkable.1 -.include <bsd.port.pre.mk> do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/unworkable ${LOCALBASE}/bin - ${INSTALL_MAN} ${WRKSRC}/unworkable.1 ${LOCALBASE}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/unworkable ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/unworkable.1 ${MANPREFIX}/man/man1/ -.include <bsd.port.post.mk> +.include <bsd.port.mk> |