mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
Add a new variable WITH_STATIC_SUPPLICANT to cause wpa_supplicant to be
linked staticly. This allows it to be used from devd at startup. [1] Use LIB_DEPENDS instead of BUILD_DEPENDS for the libdnet depend since we need it to run too. [2] My changes differ from the submitted fixes. Submitted by: Darren Pilgrim <dmp at bitfreak dot org> [1] Pawel Worach <pawel dot worach at gmail dot com> [2]
This commit is contained in:
parent
d948255982
commit
2ebcb8acaa
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=136227
@ -5,18 +5,27 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
# WITH_STATIC_SUPPLICANT - If you use wpa_supplicant with devd(8) to
|
||||
# start your wireless NIC at boot, it will not be able to resolve
|
||||
# the libdnet library dependency because devd is run before
|
||||
# ldconfig. Defining this variable will get around the problem by
|
||||
# static-linking the wpa_supplicant executable. A static-linked
|
||||
# version of the executable is about 1.25MB larger and you will be
|
||||
# required to rebuild this port whenever the net/libdnet port is
|
||||
# updated.
|
||||
|
||||
PORTNAME= wpa_supplicant
|
||||
PORTVERSION= 0.3.8
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= security net
|
||||
MASTER_SITES= http://hostap.epitest.fi/releases/
|
||||
|
||||
MAINTAINER= brooks@FreeBSD.org
|
||||
COMMENT= Supplicant (client) for WPA/802.1x protocols
|
||||
|
||||
USE_REINPLACE= yes
|
||||
LIB_DEPENDS= dnet.1:${PORTSDIR}/net/libdnet
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/libdnet.a:${PORTSDIR}/net/libdnet
|
||||
USE_REINPLACE= yes
|
||||
|
||||
PLIST_FILES= sbin/wpa_supplicant \
|
||||
sbin/wpa_passphrase \
|
||||
@ -34,10 +43,16 @@ PLIST_DIRS+= %%DOCSDIR%%
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}
|
||||
USE_GMAKE= yes
|
||||
|
||||
.if defined(WITH_STATIC_SUPPLICANT)
|
||||
SUPPLICANT_STATIC= -static
|
||||
.else
|
||||
SUPPLICANT_STATIC=
|
||||
.endif
|
||||
MAKE_ENV+= SUPPLICANT_STATIC=${SUPPLICANT_STATIC}
|
||||
|
||||
post-patch:
|
||||
@${CP} ${FILESDIR}/config.bsd ${WRKSRC}/.config
|
||||
@${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/.config
|
||||
@${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/Makefile
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
|
14
security/wpa_supplicant/files/patch-Makefile
Normal file
14
security/wpa_supplicant/files/patch-Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
--- Makefile.orig
|
||||
+++ Makefile
|
||||
@@ -303,7 +303,7 @@
|
||||
OBJS += wpa_supplicant.o wpa.o l2_packet.o drivers.o
|
||||
|
||||
wpa_supplicant: .config $(OBJS)
|
||||
- $(CC) -o wpa_supplicant $(OBJS) $(LIBS)
|
||||
+ $(CC) ${SUPPLICANT_STATIC} -o wpa_supplicant $(OBJS) $(LIBS)
|
||||
|
||||
eapol_test: .config $(OBJS_t)
|
||||
$(CC) -o eapol_test $(OBJS_t) $(LIBS)
|
Loading…
Reference in New Issue
Block a user