Changeset 212
- Timestamp:
- 08/29/04 16:57:36 (9 years ago)
- Location:
- trunk/wifidog
- Files:
-
- 5 modified
-
ChangeLog (modified) (1 diff)
-
Makefile.am (modified) (1 diff)
-
debian/control (modified) (1 diff)
-
debian/rules (modified) (2 diffs)
-
wifidog.spec.in (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/ChangeLog
r211 r212 1 1 # $Header$ 2 2004-08-29 Guillaume Beaudoin <isf@soli.ca> 3 * wifidog.spec.in: Changed prefix to match scripts/init.d/wifidog. 4 * debian/rules: Configuration and init.d file added. 5 * debian/control: Description and Depends field changed. 6 * Makefile.am: Added scripts directory and ipkg/rules file. 7 2 8 2004-08-29 Pascal Leclerc <pascal@plec.ca> 3 9 * scripts/init.d/wifidog: Startup/shutdown script for Wifidog deamon -
trunk/wifidog/Makefile.am
r208 r212 17 17 wifidog.spec \ 18 18 config \ 19 scripts \ 19 20 debian/rules \ 20 21 debian/control \ 21 22 debian/changelog \ 23 ipkg/rules \ 22 24 wifidog.conf 23 25 -
trunk/wifidog/debian/control
r147 r212 6 6 Package: wifidog 7 7 Architecture: any 8 Depends: iptables 8 Depends: iptables, modutils, grep, mawk | awk 9 9 Provides: libhttpd 10 Description: The WiFi Guard Dog project is a complete and embeddable captive portal solution for wireless community groups or individuals who wish to open a free HotSpot while still preventing abuse of their Internet connection. 10 Description: The WiFi Guard Dog client 11 The WiFi Gaurd Dog project is a complete and embeddable captive portal 12 solution for wireless community groups or individuals who wish to open 13 a free HotSpot while still preventing abuse of their Internet connection. 14 . 15 This pakacge contains only the client part. An authentification server 16 must be available to make use of it. -
trunk/wifidog/debian/rules
r147 r212 30 30 31 31 $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install 32 mkdir -p $(CURDIR)/debian/tmp/etc 33 cp wifidog.conf $(CURDIR)/debian/tmp/etc 34 cp scripts/init.d/wifidog debian/wifidog.init 32 35 33 36 # Build architecture-independent files here. … … 50 53 # dh_installpam 51 54 # dh_installmime 52 #dh_installinit55 dh_installinit 53 56 # dh_installcron 54 57 # dh_installinfo -
trunk/wifidog/wifidog.spec.in
r209 r212 4 4 %define version @VERSION@ 5 5 %define release 1 6 %define prefix /usr/local7 6 8 7 Summary: The WiFi Guard Dog project will be a complete and embeedable captive portal solution for wireless community groups or individuals who wish to open a free HotSpot while still preventing abuse of their Internet connection. … … 32 31 %install 33 32 rm -rf $RPM_BUILD_ROOT 34 mkdir -p $RPM_BUILD_ROOT%{ prefix}33 mkdir -p $RPM_BUILD_ROOT%{_prefix} 35 34 36 35 LIBRARY_PATH=$RPM_BUILD_ROOT%{_libdir} make prefix=$RPM_BUILD_ROOT%{_prefix} \ … … 38 37 datadir=$RPM_BUILD_ROOT%{_datadir} \ 39 38 includedir=$RPM_BUILD_ROOT%{_includedir} install 39 40 # Will this overide previous config file? 41 mkdir -p $RPM_BUILD_ROOT/etc 42 cp wifidog.conf $RPM_BUILD_ROOT/etc 40 43 41 44 %makeinstall … … 48 51 %defattr(-,root,root) 49 52 %doc AUTHORS COPYING ChangeLog INSTALL NEWS README doc/html 53 %config /etc/wifidog.conf 50 54 %{_bindir}/* 51 55 %{_libdir}/*.a … … 58 62 * Sun Aug 29 2004 Guillaume Beaudoin <isf@soli.ca> 59 63 - Littles fixes and libofx leftover. 64 - Prefix changed to /usr to match init.d script (define removed). 60 65 * Sat Mar 8 2004 Benoit Gr�goire <bock@step.polymtl.ca> 61 66 - Created spec file
