diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-28 16:42:58 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-28 16:42:58 +0800 |
commit | 8e062e7a1f40a1d934ae92b6b56d4f7423d9d983 (patch) | |
tree | 4ba035f48705f68d6275c25479def006f62c8209 /net | |
parent | e439269c517bf07b224597910e69493ca022caba (diff) | |
download | freebsd-ports-gnome-8e062e7a1f40a1d934ae92b6b56d4f7423d9d983.tar.gz freebsd-ports-gnome-8e062e7a1f40a1d934ae92b6b56d4f7423d9d983.tar.zst freebsd-ports-gnome-8e062e7a1f40a1d934ae92b6b56d4f7423d9d983.zip |
Support staging
Diffstat (limited to 'net')
-rw-r--r-- | net/hostapd/Makefile | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/net/hostapd/Makefile b/net/hostapd/Makefile index d55b72db8954..e9fd8ba90a81 100644 --- a/net/hostapd/Makefile +++ b/net/hostapd/Makefile @@ -12,16 +12,12 @@ COMMENT= IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator LICENSE= GPLv2 BSD LICENSE_COMB= dual -USE_GMAKE= yes +USES= gmake BUILD_WRKSRC= ${WRKSRC}/${PORTNAME} -MAN1= hostapd_cli.1 -MAN8= hostapd.8 +PLIST_FILES= sbin/hostapd sbin/hostapd_cli man/man1/hostapd_cli.1.gz \ + man/man8/hostapd.8.gz -PLIST_FILES= sbin/hostapd \ - sbin/hostapd_cli - -NO_STAGE= yes .include <bsd.port.pre.mk> .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" @@ -36,9 +32,12 @@ do-configure: ${CP} ${FILESDIR}/config ${WRKSRC}/hostapd/.config do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd_cli ${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/hostapd/${MAN1} ${MAN1PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/hostapd/${MAN8} ${MAN8PREFIX}/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd_cli \ + ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/hostapd/hostapd_cli.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/hostapd/hostapd.8 \ + ${STAGEDIR}${MANPREFIX}/man/man8 .include <bsd.port.post.mk> |