Update of /cvsroot/leaf/src/bering-uclibc/apps/hostap
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23527
Modified Files:
buildtool.cfg buildtool.mk
Removed Files:
hostapd-0.4.9.tar.gz hostapd-makefile.patch hostapd.default
hostapd.init hostapd_conf_etc.patch hostapd_config.patch
Log Message:
give hostapd its own directory for easier maintenance and because hostapd is
not really related to the hostap modules and tools anymore
--- hostapd-makefile.patch DELETED ---
--- hostapd.default DELETED ---
--- hostapd-0.4.9.tar.gz DELETED ---
--- hostapd.init DELETED ---
--- hostapd_config.patch DELETED ---
Index: buildtool.mk
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc/apps/hostap/buildtool.mk,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** buildtool.mk 26 Jun 2006 20:24:05 -0000 1.22
--- buildtool.mk 4 Jan 2007 22:31:06 -0000 1.23
***************
*** 8,25 ****
- HOSTAPD_DIR:=hostapd-0.4.9
HOSTAPDRIVER_DIR:=hostap-driver-0.4.9
HOSTAPUTILS_DIR:=hostap-utils-0.4.7
-
HOSTAPU_TARGET_DIR:=$(BT_BUILD_DIR)/hostapu
- HOSTAPD_TARGET_DIR:=$(BT_BUILD_DIR)/hostapd
-
-
- $(HOSTAPD_DIR)/.source:
- zcat $(HOSTAPD_SOURCE) | tar -xvf -
- cat $(HOSTAPD_PATCH1) | patch -d $(HOSTAPD_DIR) -p1
- cat $(HOSTAPD_PATCH2) | patch -d $(HOSTAPD_DIR) -p1
- cat $(HOSTAPD_PATCH3) | patch -d $(HOSTAPD_DIR) -p1
- touch $(HOSTAPD_DIR)/.source
--- 8,14 ----
***************
*** 65,93 ****
touch $(HOSTAPUTILS_DIR)/.build
-
- $(HOSTAPD_DIR)/.build: $(HOSTAPD_DIR)/.source
- -mkdir -p $(HOSTAPD_TARGET_DIR)/usr/bin
- -mkdir -p $(HOSTAPD_TARGET_DIR)/usr/sbin
- -mkdir -p $(HOSTAPD_TARGET_DIR)/etc/hostapd
- -mkdir -p $(HOSTAPD_TARGET_DIR)/etc/default
- -mkdir -p $(HOSTAPD_TARGET_DIR)/etc/init.d
- ( cd $(HOSTAPD_DIR) ; export CFLAGS="$(BT_COPT_FLAGS) -MMD -Wall -g
-I$(BT_STAGING_DIR)/usr/include" ; \
- export LIBS=-L$(BT_STAGING_DIR)/usr/lib ; make CC=$(TARGET_CC) ) ;
- -$(BT_STRIP) $(BT_STRIP_BINOPTS) $(HOSTAPD_DIR)/hostapd
- -$(BT_STRIP) $(BT_STRIP_BINOPTS) $(HOSTAPD_DIR)/hostapd_cli
- cp $(HOSTAPD_DIR)/hostapd $(HOSTAPD_TARGET_DIR)/usr/sbin/
- cp $(HOSTAPD_DIR)/hostapd_cli $(HOSTAPD_TARGET_DIR)/usr/bin/
- cp $(HOSTAPD_DIR)/hostapd.deny $(HOSTAPD_TARGET_DIR)/etc/hostapd/
- cp $(HOSTAPD_DIR)/hostapd.accept $(HOSTAPD_TARGET_DIR)/etc/hostapd/
- cp $(HOSTAPD_DIR)/hostapd.conf $(HOSTAPD_TARGET_DIR)/etc/hostapd/
- cp hostapd.default $(HOSTAPD_TARGET_DIR)/etc/default/hostapd
- cp hostapd.init $(HOSTAPD_TARGET_DIR)/etc/init.d/hostapd
- cp -a $(HOSTAPD_TARGET_DIR)/* $(BT_STAGING_DIR)
- touch $(HOSTAPD_DIR)/.build
-
! source: $(HOSTAPDRIVER_DIR)/.source $(HOSTAPUTILS_DIR)/.source
$(HOSTAPD_DIR)/.source
! build: $(HOSTAPDRIVER_DIR)/.build $(HOSTAPUTILS_DIR)/.build
$(HOSTAPD_DIR)/.build
clean:
--- 54,61 ----
touch $(HOSTAPUTILS_DIR)/.build
! source: $(HOSTAPDRIVER_DIR)/.source $(HOSTAPUTILS_DIR)/.source
! build: $(HOSTAPDRIVER_DIR)/.build $(HOSTAPUTILS_DIR)/.build
clean:
***************
*** 95,107 ****
(cd $(HOSTAPDRIVER_DIR) ; make KERNEL_PATH=$(BT_LINUX_DIR)
DESTDIR=$(BT_STAGING_DIR) uninstall );
make -C $(HOSTAPUTILS_DIR) clean
- make -C $(HOSTAPD_DIR) clean
rm $(HOSTAPDRIVER_DIR)/.build
- rm $(HOSTAPD_DIR)/.build
rm $(HOSTAPUTILS_DIR)/.build
- rm -rf $(HOSTAPD_TARGET_DIR)
rm -rf $(HOSTAPU_TARGET_DIR)
srcclean:
rm -rf $(HOSTAPDRIVER_DIR)
- rm -rf $(HOSTAPD_DIR)
rm -rf $(HOSTAPUTILS_DIR)
--- 63,71 ----
Index: buildtool.cfg
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc/apps/hostap/buildtool.cfg,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** buildtool.cfg 26 Jun 2006 20:24:05 -0000 1.20
--- buildtool.cfg 4 Jan 2007 22:31:06 -0000 1.21
***************
*** 5,36 ****
</File>
- <File hostapd-0.4.9.tar.gz>
- Server = cvs-sourceforge
- Directory = hostap
- revision = HEAD
- EnvName = HOSTAPD_SOURCE
- </File>
-
- <File hostapd-makefile.patch>
- Server = cvs-sourceforge
- Directory = hostap
- revision = HEAD
- EnvName = HOSTAPD_PATCH1
- </File>
-
- <File hostapd_config.patch>
- Server = cvs-sourceforge
- Directory = hostap
- revision = HEAD
- EnvName = HOSTAPD_PATCH2
- </File>
-
- <File hostapd_conf_etc.patch>
- Server = cvs-sourceforge
- Directory = hostap
- revision = HEAD
- EnvName = HOSTAPD_PATCH3
- </File>
-
<File hostap-driver-0.4.9.tar.gz>
Server = cvs-sourceforge
--- 5,8 ----
***************
*** 60,75 ****
</File>
- <File hostapd.init>
- Server = cvs-sourceforge
- Directory = hostap
- revision = HEAD
- </File>
-
- <File hostapd.default>
- Server = cvs-sourceforge
- Directory = hostap
- revision = HEAD
- </File>
-
<File hostap-utils-pre-up>
Server = cvs-sourceforge
--- 32,35 ----
***************
*** 175,261 ****
</Contents>
</hostapu>
-
- <hostapd>
- Version = 0.4.9
- Revision = 1
-
- Help <<EOF
- Host AP user space daemon for extended IEEE 802.11 management
- Homepage: http://hostap.epitest.fi
- Requires: libssl.lrp, libcrpto.lrp
- LEAF Package by __PACKAGER__, __BUILDDATE__
- EOF
-
- <Permissions>
- Files = 644
- Directories = 755
- </Permissions>
-
- <Owner>
- Files = root:root
- Directories = root:root
- </Owner>
- <Contents>
- <File>
- Filename = usr/sbin/hostapd
- Source = usr/sbin/hostapd
- Type = binary
- Permissions = 755
- </File>
- <File>
- Filename = usr/bin/hostapd_cli
- Source = usr/bin/hostapd_cli
- Type = binary
- Permissions = 755
- </File>
- <File>
- Filename = etc/init.d/hostapd
- Source = etc/init.d/hostapd
- Type = binary
- Permissions = 755
- </File>
- <File>
- Filename = etc/default/hostapd
- Source = etc/default/hostapd
- Description = hostap daemon default file
- Type = conf
- Type = local
- Type = binary
- Permissions = 644
- </File>
- <File>
- Filename = etc/hostapd/hostapd.conf
- Source = etc/hostapd/hostapd.conf
- Description = hostap daemon conf file
- Type = conf
- Type = binary
- Permissions = 644
- </File>
- <File>
- Filename = etc/hostapd/hostapd.accept
- Source = etc/hostapd/hostapd.accept
- Description = MAC accept list
- Type = conf
- Type = binary
- Permissions = 644
- </File>
- <File>
- Filename = etc/hostapd/hostapd.deny
- Source = etc/hostapd/hostapd.deny
- Description = MAC deny list
- Type = conf
- Type = binary
- Permissions = 644
- </File>
- <File>
- Filename = etc/hostapd
- Type = directory
- Type = local
- </File>
- <File>
- Filename = var/run/hostapd
- Type = directory
- </File>
- </Contents>
- </hostapd>
</Package>
--- 135,137 ----
--- hostapd_conf_etc.patch DELETED ---
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
leaf-cvs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/leaf-cvs-commits