Author: jhuntwork
Date: 2005-04-17 18:07:09 -0600 (Sun, 17 Apr 2005)
New Revision: 100
Added:
trunk/packages/ion/
trunk/packages/ion/Makefile
trunk/packages/lua/
trunk/packages/lua/Makefile
Modified:
trunk/Makefile
Log:
Added lua and ion
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2005-04-17 23:41:57 UTC (rev 99)
+++ trunk/Makefile 2005-04-18 00:07:09 UTC (rev 100)
@@ -173,7 +173,7 @@
ch-unzip ch-lynx ch-libxml2 ch-expat ch-subversion ch-lfs-bootscripts
ch-docbook-xml ch-libxslt \
ch-docbook-xsl ch-html_tidy ch-LFS-BOOK ch-libpng ch-freetype
ch-fontconfig ch-Xorg ch-freefont ch-libjpeg \
ch-libtiff ch-links ch-openssh ch-pkgconfig ch-glib2 ch-libungif
ch-imlib2 ch-pango ch-atk ch-gtk2 \
- ch-libIDL ch-firefox ch-startup-notification ch-xfce ch-irssi ch-xchat
ch-samba ch-tcpwrappers ch-portmap \
+ ch-libIDL ch-firefox ch-startup-notification ch-xfce ch-lua ch-ion
ch-irssi ch-xchat ch-samba ch-tcpwrappers ch-portmap \
ch-nfs-utils ch-traceroute ch-ncftp ch-pciutils ch-nALFS
ch-device-mapper ch-LVM2 ch-dhcpcd ch-ppp ch-rp-pppoe ch-libaal \
ch-reiser4progs ch-squashfs ch-cpio ch-db ch-postfix ch-mutt ch-slrn
ch-linux ch-cdrtools ch-blfs-bootscripts \
ch-syslinux
@@ -723,6 +723,14 @@
make -C $(PKG)/$@ chroot
make unmount
+lua: prep-chroot
+ make -C $(PKG)/$@ chroot
+ make unmount
+
+ion: prep-chroot
+ make -C $(PKG)/$@ chroot
+ make unmount
+
libast: prep-chroot
make -C $(PKG)/$@ chroot
make unmount
@@ -1231,6 +1239,12 @@
ch-xfce: popdev
make -C $(PKG)/xfce stage2
+ch-lua: popdev
+ make -C $(PKG)/lua stage2
+
+ch-ion: popdev
+ make -C $(PKG)/ion stage2
+
ch-libast: popdev
make -C $(PKG)/libast stage2
Added: trunk/packages/ion/Makefile
===================================================================
--- trunk/packages/ion/Makefile 2005-04-17 23:41:57 UTC (rev 99)
+++ trunk/packages/ion/Makefile 2005-04-18 00:07:09 UTC (rev 100)
@@ -0,0 +1,28 @@
+# ion Makefile
+
+# Package versions
+NM= ion
+VRS= 2-20040729
+DIR= $(NM)-$(VRS)
+FILE= $(DIR).tar.gz
+URL= http://modeemi.cs.tut.fi/~tuomov/ion/dl/$(FILE)
+
+#RULES
+
+.PHONY: clean chroot stage2
+
+chroot:
+ @chroot "$(MP)" $(chenv3) 'cd $(ROOT) && make ch-$(NM) $(chbash2)'
+
+stage2:
+ @echo ""
+ @echo "=====> Building $(NM) in chroot"
+ @echo ""
+ @if [ ! -f $(FILE) ] ; then $(WGET) $(URL) ; fi
+ @if [ ! -f /usr/sbin/pppd ] ; then tar -xzvf $(FILE) && cd $(DIR) && \
+ ./configure --prefix=/usr && \
+ make -j3 && make install ; fi
+ @make clean
+
+clean:
+ @-rm -rf $(DIR)
Added: trunk/packages/lua/Makefile
===================================================================
--- trunk/packages/lua/Makefile 2005-04-17 23:41:57 UTC (rev 99)
+++ trunk/packages/lua/Makefile 2005-04-18 00:07:09 UTC (rev 100)
@@ -0,0 +1,28 @@
+# lua Makefile
+
+# Package versions
+NM= lua
+VRS= 5.0.2
+DIR= $(NM)-$(VRS)
+FILE= $(DIR).tar.gz
+URL= http://www.lua.org/ftp/$(FILE)
+
+#RULES
+
+.PHONY: clean chroot stage2
+
+chroot:
+ @chroot "$(MP)" $(chenv3) 'cd $(ROOT) && make ch-$(NM) $(chbash2)'
+
+stage2:
+ @echo ""
+ @echo "=====> Building $(NM) in chroot"
+ @echo ""
+ @if [ ! -f $(FILE) ] ; then $(WGET) $(URL) ; fi
+ @if [ ! -f /usr/sbin/pppd ] ; then tar -xzvf $(FILE) && cd $(DIR) && \
+ ./configure --prefix=/usr && \
+ make -j3 && make install ; fi
+ @make clean
+
+clean:
+ @-rm -rf $(DIR)
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page