Changeset 1608

Show
Ignore:
Timestamp:
07/12/06 02:50:35 (2 years ago)
Author:
justin
Message:

Added tree, updated testsuite package builds.

Location:
branches/cross
Files:
5 modified
1 copied

Legend:

Unmodified
Added
Removed
  • branches/cross/Makefile

    r1606 r1608  
    231231tools: clfs-binutils-scpt clfs-gcc-scpt clfs-ncurses-scpt clfs-bash-scpt \ 
    232232        clfs-bzip2-scpt clfs-coreutils-scpt clfs-diffutils-scpt clfs-findutils-scpt \ 
    233         clfs-gawk-scpt stop-here clfs-gettext-scpt clfs-grep-scpt clfs-gzip-scpt clfs-make-scpt \ 
     233        clfs-gawk-scpt clfs-gettext-scpt clfs-grep-scpt clfs-gzip-scpt clfs-make-scpt \ 
    234234        clfs-patch-scpt clfs-sed-scpt clfs-tar-scpt clfs-texinfo-scpt \ 
    235235        clfs-util-linux-scpt clfs-wget-scpt 
     
    237237 
    238238cross-pre-bash: createfiles clfs-tcl-scpt clfs-expect-scpt clfs-file-scpt \ 
    239         clfs-dejagnu-scpt clfs-tree-scpt clfs-perl-scpt ch-linux-headers \ 
     239        clfs-dejagnu-scpt clfs-tree-scpt stop-here clfs-perl-scpt ch-linux-headers \ 
    240240        ch-glibc adjusting-toolchain ch-binutils ch-gcc ch-coreutils ch-iana-etc \ 
    241241        ch-m4 ch-bison ch-ncurses ch-procps ch-sed ch-libtool ch-perl ch-readline \ 
  • branches/cross/packages/expect/Makefile

    r1498 r1608  
    2222 
    2323compile-stage1: 
     24        sed -i '/EXP_LIB_SPEC=/s@$${exec_prefix}/lib@$${libdir}@' configure 
    2425        patch -Np1 -i ../$(PATCH1) 
    25 ifndef CROSS 
    2626        ./configure --prefix=$(WD) --with-tcl=$(WD)/lib \ 
    27         --with-tclinclude=$(WD)/include --with-x=no 
    28 else 
    29         CC="gcc $(64FLAGS)" ./configure --prefix=$(WD) --with-tcl=$(WD)/lib64 \ 
    30         --with-tclinclude=$(WD)/include --libdir=$(WD)/lib64 \ 
    31         --with-x=no 
    32 endif 
     27        --with-tclinclude=$(WD)/include 
    3328        make $(PM) 
    3429        make SCRIPTS="" install 
  • branches/cross/packages/file/Makefile

    r1498 r1608  
    1313include $(ROOT)/scripts/functions 
    1414 
     15stage1: $(FILE) 
     16        $(std_build) 
     17        cp $(SRC)/$(FILE) $(LFSSRC) 
     18 
     19compile-stage1: 
     20        ./configure --prefix=/tools 
     21        make $(PM) 
     22        make install 
     23 
    1524chroot: 
    1625        chroot "$(MP)" $(chenv-post-bash) \ 
     
    1928stage2: Makefile $(FILE) 
    2029        $(std_build) 
    21         cp $(SRC)/$(FILE) $(LFSSRC) 
    2230 
    2331compile-stage2: 
    24 ifndef CROSS 
    2532        ./configure --prefix=/usr 
    26 else 
    27         CC="gcc $(64FLAGS)" ./configure --prefix=/usr \ 
    28          --libdir=/usr/lib64 
    29 endif 
    3033        make $(PM) 
    3134        make install 
     
    3437        -rm -rf $(DIR) 
    3538 
    36 .PHONY: clean chroot compile-stage2 
     39.PHONY: compile-stage1 clean chroot compile-stage2 
  • branches/cross/packages/tcl/Makefile

    r1499 r1608  
    1818 
    1919compile-stage1: 
    20         cd unix ; cp configure configure.orig ; sed "s/relid'/relid/" configure.orig >configure 
    21 ifndef CROSS 
     20        cd unix ; sed -i "s/relid'/relid/" configure 
    2221        cd unix ; ./configure --prefix=$(WD) 
    23 else 
    24         cd unix ; sed -i 's@\$$(prefix)/lib@\$$(prefix)/lib64@g' Makefile.in 
    25         cd unix ; CC="gcc $(64FLAGS)" ./configure --prefix=/tools --libdir=$(WD)/lib64 
    26 endif 
    2722        cd unix ; make $(PM) 
    2823        cd unix ; make install 
    2924        cd unix ; make install-private-headers 
    30         ln -s tclsh8.4 $(WD)/bin/tclsh 
     25        ln -sv tclsh8.4 $(WD)/bin/tclsh 
    3126 
    3227clean: 
  • branches/cross/packages/tree/Makefile

    r1498 r1608  
    1 # File Makefile 
     1# Tree Makefile 
    22 
    3 NM= file 
    4 VRS= 4.17 
     3NM= tree 
     4VRS= 1.5.0 
    55DIR= $(NM)-$(VRS) 
    66 
    7 FILE= $(DIR).tar.gz 
     7FILE= $(DIR).tgz 
    88URL-$(FILE)= $(HTTP)/$(NM)/$(FILE) 
    9 SHA-$(FILE)= e03710a3fcb95db6d0ee9cfcdf88c19a5e525ee4 
     9SHA-$(FILE)= 201fc3a7d37db8c747ba1665370c14228a422015 
    1010 
    1111# Targets 
     
    1313include $(ROOT)/scripts/functions 
    1414 
    15 chroot: 
    16         chroot "$(MP)" $(chenv-post-bash) \ 
    17         'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)' 
    18  
    19 stage2: Makefile $(FILE) 
     15stage1: $(FILE) 
    2016        $(std_build) 
    2117        cp $(SRC)/$(FILE) $(LFSSRC) 
    2218 
    23 compile-stage2: 
    24 ifndef CROSS 
    25         ./configure --prefix=/usr 
    26 else 
    27         CC="gcc $(64FLAGS)" ./configure --prefix=/usr \ 
    28          --libdir=/usr/lib64 
    29 endif 
     19compile-stage1: 
    3020        make $(PM) 
    3121        make install 
     
    3424        -rm -rf $(DIR) 
    3525 
    36 .PHONY: clean chroot compile-stage2 
     26.PHONY: clean chroot compile-stage1