Author: justin
Date: 2005-11-29 19:52:03 -0700 (Tue, 29 Nov 2005)
New Revision: 1191

Added:
   branches/utf8-newmake/packages/expat/vars/
   branches/utf8-newmake/packages/html_tidy/vars/
   branches/utf8-newmake/packages/libxml2/vars/
   branches/utf8-newmake/packages/libxslt/vars/
   branches/utf8-newmake/packages/subversion/vars/
Modified:
   branches/utf8-newmake/Makefile
   branches/utf8-newmake/packages/expat/Makefile
   branches/utf8-newmake/packages/html_tidy/Makefile
   branches/utf8-newmake/packages/libxml2/Makefile
   branches/utf8-newmake/packages/libxslt/Makefile
   branches/utf8-newmake/packages/subversion/Makefile
Log:
Merged r1184 (added libxml2, expat, subversion, docbook-xml, libxslt, 
docbook-xsl and html_tidy to x86_64-blfs) from trunk to utf8-newmake.

Modified: branches/utf8-newmake/Makefile
===================================================================
--- branches/utf8-newmake/Makefile      2005-11-30 02:44:23 UTC (rev 1190)
+++ branches/utf8-newmake/Makefile      2005-11-30 02:52:03 UTC (rev 1191)
@@ -290,8 +290,9 @@
 endif
 
 x86_64-blfs: ch-openssl ch-wget ch-reiserfsprogs ch-nano ch-joe ch-screen 
ch-curl \
-       ch-zip ch-unzip ch-lynx ch-lfs-bootscripts ch-squashfs ch-cpio ch-linux 
ch-ctags ch-unionfs \
-       ch-initramfs ch-cdrtools ch-syslinux
+       ch-zip 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-squashfs ch-cpio \
+       ch-linux ch-ctags ch-unionfs ch-initramfs ch-cdrtools ch-syslinux
 
 sparc64-blfs: ch-openssl ch-wget ch-reiserfsprogs ch-xfsprogs ch-nano \
        ch-joe ch-screen ch-curl ch-zip ch-unzip ch-lynx ch-libxml2 ch-expat \

Modified: branches/utf8-newmake/packages/expat/Makefile
===================================================================
--- branches/utf8-newmake/packages/expat/Makefile       2005-11-30 02:44:23 UTC 
(rev 1190)
+++ branches/utf8-newmake/packages/expat/Makefile       2005-11-30 02:52:03 UTC 
(rev 1191)
@@ -8,6 +8,8 @@
 URL-$(FILE)= $(HTTPBLFS)/$(NM)/$(FILE)
 SHA-$(FILE)= a05bef2d12056162becb6ac631c31e45acd76ce2
 
+include $(CROSSVARS)
+
 # Targets
 
 include $(ROOT)/scripts/functions
@@ -20,12 +22,7 @@
        $(std_build)
 
 compile-stage2:
-ifeq ($(LFS-ARCH),sparc64)
-       CC="gcc $(64FLAGS)" ./configure --prefix=/usr \
-        --libdir=/usr/lib64
-else
-       ./configure --prefix=/usr
-endif
+       $(ARCH_CC) ./configure --prefix=/usr $(EXTRA_CONF)
        make $(PM)
        make install
 

Copied: branches/utf8-newmake/packages/expat/vars (from rev 1184, 
trunk/packages/expat/vars)

Modified: branches/utf8-newmake/packages/html_tidy/Makefile
===================================================================
--- branches/utf8-newmake/packages/html_tidy/Makefile   2005-11-30 02:44:23 UTC 
(rev 1190)
+++ branches/utf8-newmake/packages/html_tidy/Makefile   2005-11-30 02:52:03 UTC 
(rev 1191)
@@ -26,7 +26,7 @@
 
 compile-stage2:
        sh build/gnuauto/setup.sh
-       ./configure --prefix=/usr
+       $(ARCH_CC) ./configure --prefix=/usr $(EXTRA_CONF)
        make $(PM)
        make install
        install -d -m755 /usr/share/doc/tidy

Copied: branches/utf8-newmake/packages/html_tidy/vars (from rev 1184, 
trunk/packages/html_tidy/vars)

Modified: branches/utf8-newmake/packages/libxml2/Makefile
===================================================================
--- branches/utf8-newmake/packages/libxml2/Makefile     2005-11-30 02:44:23 UTC 
(rev 1190)
+++ branches/utf8-newmake/packages/libxml2/Makefile     2005-11-30 02:52:03 UTC 
(rev 1191)
@@ -8,6 +8,8 @@
 URL-$(FILE)= $(HTTPBLFS)/$(NM)/$(FILE)
 SHA-$(FILE)= 3f920523136d51b246569977df70e6893d925dd5
 
+include $(CROSSVARS)
+
 # Targets
 
 include $(ROOT)/scripts/functions
@@ -20,12 +22,7 @@
        $(std_build)
 
 compile-stage2:
-ifeq ($(LFS-ARCH),sparc64)
-       CC="gcc $(64FLAGS)" ./configure --prefix=/usr \
-         --libdir=/usr/lib64 --with-history
-else
-       ./configure --prefix=/usr --with-history
-endif
+       $(ARCH_CC) ./configure --prefix=/usr --with-history $(EXTRA_CONF)
        make $(PM)
        make install
 

Copied: branches/utf8-newmake/packages/libxml2/vars (from rev 1184, 
trunk/packages/libxml2/vars)

Modified: branches/utf8-newmake/packages/libxslt/Makefile
===================================================================
--- branches/utf8-newmake/packages/libxslt/Makefile     2005-11-30 02:44:23 UTC 
(rev 1190)
+++ branches/utf8-newmake/packages/libxslt/Makefile     2005-11-30 02:52:03 UTC 
(rev 1191)
@@ -20,12 +20,7 @@
        $(std_build)
 
 compile-stage2:
-ifeq ($(LFS-ARCH),sparc64)
-       CC="gcc $(64FLAGS)" ./configure --prefix=/usr \
-        --libdir=/usr/lib64
-else
-       ./configure --prefix=/usr
-endif
+       $(ARCH_CC) ./configure --prefix=/usr $(EXTRA_CONF)
        make $(PM)
        make install
 

Copied: branches/utf8-newmake/packages/libxslt/vars (from rev 1184, 
trunk/packages/libxslt/vars)

Modified: branches/utf8-newmake/packages/subversion/Makefile
===================================================================
--- branches/utf8-newmake/packages/subversion/Makefile  2005-11-30 02:44:23 UTC 
(rev 1190)
+++ branches/utf8-newmake/packages/subversion/Makefile  2005-11-30 02:52:03 UTC 
(rev 1191)
@@ -20,12 +20,7 @@
        $(std_build)
 
 compile-stage2:
-ifeq ($(LFS-ARCH),sparc64)
-       CC="gcc $(64FLAGS)" ./configure --prefix=/usr \
-        --libdir=/usr/lib64
-else
-       ./configure --prefix=/usr
-endif
+       $(ARCH_CC) ./configure --prefix=/usr $(EXTRA_CONF)
        make $(PM)
        make install
        install -v -d -m755 /usr/share/doc/$(DIR)

Copied: branches/utf8-newmake/packages/subversion/vars (from rev 1184, 
trunk/packages/subversion/vars)

-- 
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to