Author: justin
Date: 2005-11-02 22:45:29 -0700 (Wed, 02 Nov 2005)
New Revision: 1030
Added:
trunk/packages/wireless_tools/
Modified:
trunk/Makefile
trunk/packages/wireless_tools/Makefile
Log:
Added wireless_tools to trunk. Wireless support is already enabled in the
kernel configs for all but x86_64. Support for this in net-setup is planned.
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2005-11-02 20:48:58 UTC (rev 1029)
+++ trunk/Makefile 2005-11-03 05:45:29 UTC (rev 1030)
@@ -272,7 +272,8 @@
ch-pango ch-atk ch-gtk2 ch-cvs ch-popt ch-samba ch-libIDL ch-firefox \
ch-thunderbird ch-librsvg \
ch-startup-notification chroot-gvim ch-xfce ch-lua ch-ion ch-irssi \
- ch-xchat ch-tcpwrappers ch-portmap ch-nfs-utils ch-traceroute \
+ ch-xchat ch-wireless_tools ch-tcpwrappers ch-portmap ch-nfs-utils \
+ ch-traceroute \
ch-dialog ch-ncftp ch-pciutils ch-nALFS ch-device-mapper ch-LVM2 \
ch-dhcpcd ch-distcc ch-ppp ch-rp-pppoe ch-libaal ch-reiser4progs \
ch-squashfs ch-cpio ch-gdbm ch-mutt ch-msmtp ch-tin ch-mdadm ch-which \
Copied: trunk/packages/wireless_tools (from rev 1029, trunk/packages/template)
Modified: trunk/packages/wireless_tools/Makefile
===================================================================
--- trunk/packages/template/Makefile 2005-11-02 20:48:58 UTC (rev 1029)
+++ trunk/packages/wireless_tools/Makefile 2005-11-03 05:45:29 UTC (rev
1030)
@@ -1,62 +1,29 @@
-# [package-name] Makefile (This is a template for package Makefiles)
+# wireless_tools Makefile
-NM= [package-name]
-VRS= [version-number]
-DIR= $(NM)-$(VRS)
+NM= wireless_tools
+VRS= 27
+DIR= $(NM).$(VRS)
-FILE= $(DIR).tar.bz2 # Use bz2 files wherever possible, especially for lfs-base
-URL-$(FILE)= $(HTTP)/$(NM)/$(FILE)
-SHA-$(FILE)= [sha1sum of $(FILE)]
+FILE= $(DIR).tar.bz2
+URL-$(FILE)= $(HTTPBLFS)/$(NM)/$(FILE)
+SHA-$(FILE)= 0b94fa04df84419e3ef34e272e7be215f6533c4d
-PATCH1= $(DIR)-some-1.patch
-URL-$(PATCH1)= $(HTTP)/$(NM)/$(PATCH1)
-SHA-$(PATCH1)= [sha1sum of $(PATCH1)]
-
# Targets
include $(ROOT)/scripts/functions
-stage1: $(FILE)
- $(std_build) # See the scripts/functions file for functions like this
- cp $(SRC)/$(FILE) $(LFSSRC) # Copy LFS-Base packages to safe location
-
-compile-stage1:
- ./configure --prefix=$(WD)
- make $(PM)
- make install
-
-# The following target is for use with packages that must be built in chroot
-# and which you want to build one at a time. Mostly for troubleshooting.
-# For use with packages built in chroot but before the chroot installation of
-# Bash.
-# NOTE: You would never call the 'chroot' targets directly, they would be
-# referenced by other targets in the root Makefile.
chroot:
- chroot "$(MP)" $(chenv-pre-bash) \
- 'cd $(ROOT) && make ch-$(NM) $(chbash-pre-bash)'
-
-# Below is a variation of the above target. This would be used with packages
-# built in chroot after Bash, but before BLFS-type packages.
-#chroot:
-# chroot "$(MP)" $(chenv-post-bash) \
+ chroot "$(MP)" $(chenv-blfs) \
'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
-# Below is the final variation of the above two. For use with packages built
-# in chroot but after the lfs-base is done. BLFS-type packages.
-#chroot:
-# chroot "$(MP)" $(chenv-blfs) \
- 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+stage2: Makefile $(FILE)
+ $(std_build)
-stage2: Makefile $(FILE) $(PATCH1)
- $(sep_dir_build) # Simple function to create a separate build directory
-
compile-stage2:
- patch -Np1 -i ../$(PATCH1)
- ./configure --prefix=/usr
- make $(PM)
+ make PREFIX=/usr
make install
clean:
-rm -rf $(DIR)
-.PHONY: compile-stage1 clean chroot compile-stage2
+.PHONY: clean chroot compile-stage2
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page