diff --git a/net/hostapd-devel/Makefile b/net/hostapd-devel/Makefile index 1ee9304a8c6a..e006c6ff86fd 100644 --- a/net/hostapd-devel/Makefile +++ b/net/hostapd-devel/Makefile @@ -1,46 +1,46 @@ # Created by: Craig Leres PORTNAME= hostapd PORTVERSION= ${COMMIT_DATE} CATEGORIES= net PKGNAMESUFFIX= -devel MAINTAINER= cy@FreeBSD.org COMMENT= IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator USE_GITHUB= yes GH_ACCOUNT= cschuber GH_PROJECT= hostap -GH_TAGNAME= b4f7506ff -COMMIT_DATE= 2021.07.14 +GH_TAGNAME= 14ab4a816 +COMMIT_DATE= 2021.11.26 LICENSE= BSD3CLAUSE USES= cpe gmake ssl CPE_VENDOR= w1.fi BUILD_WRKSRC= ${WRKSRC}/hostapd CFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} PLIST_FILES= sbin/hostapd sbin/hostapd_cli man/man1/hostapd_cli.1.gz \ man/man8/hostapd.8.gz .if !exists(/etc/rc.d/hostapd) USE_RC_SUBR= hostapd .endif post-patch: @${REINPLACE_CMD} -e 's|@$$(E) " CC " $$<|@$$(E) " $$(CC) " $$<|' \ ${BUILD_WRKSRC}/Makefile @${SED} -e 's|@PREFIX@|${PREFIX}|g' ${FILESDIR}/config \ >> ${WRKSRC}/hostapd/.config do-install: ${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 diff --git a/net/hostapd-devel/distinfo b/net/hostapd-devel/distinfo index 7d0937b9914d..e35b104ace3a 100644 --- a/net/hostapd-devel/distinfo +++ b/net/hostapd-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1626898947 -SHA256 (cschuber-hostap-2021.07.14-b4f7506ff_GH0.tar.gz) = 53d221682bd21cf6cc2ec9fa2012e186754960c3aaee8b94262a1cf4076a165c -SIZE (cschuber-hostap-2021.07.14-b4f7506ff_GH0.tar.gz) = 4789787 +TIMESTAMP = 1638218753 +SHA256 (cschuber-hostap-2021.11.26-14ab4a816_GH0.tar.gz) = e4ff65220bef6724448066f95ee0e76e8952d3ef8852b5338e431cfa91dd0244 +SIZE (cschuber-hostap-2021.11.26-14ab4a816_GH0.tar.gz) = 4825757 diff --git a/net/hostapd-devel/files/patch-src_utils_os__unix.c b/net/hostapd-devel/files/patch-src_utils_os__unix.c deleted file mode 100644 index cd4f24b681c3..000000000000 --- a/net/hostapd-devel/files/patch-src_utils_os__unix.c +++ /dev/null @@ -1,14 +0,0 @@ ---- src/utils/os_unix.c.orig 2021-06-02 14:11:18.000000000 -0700 -+++ src/utils/os_unix.c 2021-06-07 16:07:39.152547000 -0700 -@@ -464,9 +464,9 @@ - int os_fdatasync(FILE *stream) - { - if (!fflush(stream)) { --#ifdef __linux__ -+#if defined __FreeBSD__ || defined __linux__ - return fdatasync(fileno(stream)); --#else /* !__linux__ */ -+#else /* !__linux__ && !__FreeBSD__ */ - #ifdef F_FULLFSYNC - /* OS X does not implement fdatasync(). */ - return fcntl(fileno(stream), F_FULLFSYNC);