diff options
Diffstat (limited to 'net/hostapd/Makefile')
-rw-r--r-- | net/hostapd/Makefile | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/net/hostapd/Makefile b/net/hostapd/Makefile index a3c46954a196..99a342c2d6f2 100644 --- a/net/hostapd/Makefile +++ b/net/hostapd/Makefile @@ -6,44 +6,43 @@ # PORTNAME= hostapd -PORTVERSION= 0.7.3 +PORTVERSION= 1.0 CATEGORIES= net MASTER_SITES= http://hostap.epitest.fi/releases/ -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= leres@ee.lbl.gov COMMENT= IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator +LICENSE= GPLv2 BSD +LICENSE_COMB= dual + USE_GMAKE= yes +BUILD_WRKSRC= ${WRKSRC}/${PORTNAME} +MAKE_JOBS_SAFE= yes MAN1= hostapd_cli.1 MAN8= hostapd.8 -do-configure: - ${CP} ${FILESDIR}/config ${WRKSRC}/hostapd/.config - -do-build: - (cd ${WRKSRC}/hostapd && ${GMAKE}) - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd_cli ${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/hostapd/${MAN1} ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/hostapd/${MAN8} ${PREFIX}/man/man8 - PLIST_FILES= sbin/hostapd \ sbin/hostapd_cli -#MAKE_JOBS_SAFE= yes -#MANCOMPRESSED= yes - -LICENSE= GPLv1 BSD -LICENSE_COMB= dual - .include <bsd.port.pre.mk> .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" BROKEN= Does not compile on ia64, powerpc, or sparc64 .endif +post-patch-script: + @${REINPLACE_CMD} -e 's|@$$(E) " CC " $$<|@$$(E) " $$(CC) " $$<|' \ + ${BUILD_WRKSRC}/Makefile + +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 + .include <bsd.port.post.mk> |