wok view gcc+gcj/receipt @ rev 4989

fix: RAM for get-google-earth; Add TAGS
author Rohit Joshi <jozee@slitaz.org>
date Thu Feb 25 11:17:18 2010 +0000 (2010-02-25)
parents e0ab48bc2f28
children 9f19aee613be
line source
1 # SliTaz package receipt.
3 PACKAGE="gcc+gcj"
4 SOURCE="gcc"
5 VERSION="4.4.1"
6 CATEGORY="development"
7 SHORT_DESC="The GNU Compiler Collection, including the gcj Compiler for Java."
8 MAINTAINER="rcx@zoominternet.net"
9 DEPENDS="glibc-base glib gcc-lib-base libgio util-linux-ng-uuid zlib libgomp gmp mpfr python \
10 gtk+ atk cairo expat fontconfig freetype pango pixman libpng libxcb xcb-util \
11 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXcomposite \
12 xorg-libXcursor xorg-libXdamage xorg-libXdmcp xorg-libXext xorg-libXfixes \
13 xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXtst"
14 BUILD_DEPENDS="glibc-dev gawk flex python perl gmp gmp-dev mpfr mpfr-dev \
15 expat-dev zlib-dev fastjar gtk+-dev libart_lgpl-dev xorg-dev xorg-inputproto \
16 xorg-kbproto xorg-libXtst xorg-randrproto xorg-renderproto xorg-xextproto xorg-xproto"
17 TARBALL="$SOURCE-$VERSION.tar.bz2"
18 WEB_SITE="http://gcc.gnu.org/java/"
19 WGET_URL="$GNU_MIRROR/$SOURCE/$SOURCE-$VERSION/$TARBALL"
20 PROVIDE="$SOURCE jre jdk"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 # Set BUILD_HOST if not defined in tazwok.conf as it should be
26 if [ -z "$BUILD_HOST" ] ; then
27 BUILD_HOST="i486-pc-linux-gnu"
28 fi
29 GCC_TARGET=$BUILD_HOST
31 # Get ecj.jar needed to build gcj
32 # (See http://gcc.gnu.org/install/configure.html --with-ecj-jar)
33 ECJ_PRE_PATH=`pwd`
34 ECJ_JAR="ecj-latest.jar"
35 ECJ_URL="ftp://sourceware.org/pub/java/$ECJ_JAR"
36 if [ ! -f "$SOURCES_REPOSITORY/$ECJ_JAR" ] ; then
37 cd $SOURCES_REPOSITORY
38 download $ECJ_URL
39 # Exit if download failed to avoid errors.
40 if [ ! -f "$SOURCES_REPOSITORY/$ECJ_JAR" ] ; then
41 echo -e "\nECJ jar download failed, exiting. Please check ECJ_URL variable.\n"
42 exit 1
43 fi
44 else
45 echo -n "ECJ jar exit... "
46 status
47 fi
49 # Copy the ecj jar to the root of the gcc source directory
50 # The file name isn't versioned, so we have to remove it from the
51 # sources repository to ensure that we receive updated files
52 mv -f $SOURCES_REPOSITORY/$ECJ_JAR $src/ecj.jar
54 # Pop back to the pre-download directory
55 cd $ECJ_PRE_PATH
57 # Use libiberty.a from binutils.
58 sed -i 's/install_to_$(INSTALL_DEST) //' \
59 $SOURCE-$VERSION/libiberty/Makefile.in || exit 1
60 mkdir -p $SOURCE-$VERSION-build
61 cd $SOURCE-$VERSION-build
63 ../$SOURCE-$VERSION/configure --prefix=/usr --libexecdir=/usr/lib \
64 --infodir=/usr/share/info --mandir=/usr/share/man --enable-nls \
65 --enable-languages=c,c++,java --enable-shared --with-system-zlib \
66 --enable-clocale=gnu --enable-objc-gc --enable-__cxa_atexit \
67 --enable-threads=posix --with-tune=i486 \
68 --enable-java-home --with-arch-directory=i386 \
69 --with-jvm-root-dir=/usr/lib/jvm/java-gcj \
70 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-gcj \
71 --with-python-dir=/lib/python2.5/site-packages \
72 --with-x --enable-java-awt=gtk \
73 --enable-gtk-cairo \
74 $CONFIGURE_ARGS $GCC_TARGET &&
75 make bootstrap &&
76 # Make install in the source tree to help creating derived pkgs
77 # and keep $_pkg variable set for genpkg.
78 make DESTDIR=$src/_pkg install
79 }
81 # Rules to gen a SliTaz package suitable for Tazpkg.
82 genpkg_rules()
83 {
84 mkdir -p $fs/usr/share
85 cp -a $_pkg/usr/share/java $fs/usr/share
86 cp -a $_pkg/usr/bin $fs/usr
87 # Copy all libs. Remove libgcc_s.so and libstdc++.so
88 # they goes in gcc-lib-base-$VERSION package.
89 cp -a $_pkg/usr/lib $fs/usr
90 rm $fs/usr/lib/libgcc_s.so*
91 rm $fs/usr/lib/libstdc++.so*
92 rm $fs/usr/lib/libgomp.so*
93 # Include files.
94 cp -a $_pkg/usr/include $fs/usr
95 }
97 # Post install commands for Tazpkg.
98 post_install()
99 {
100 local root
101 root=$1
102 echo "Processing post-install commands..."
103 if [ ! -f "$root/lib/cpp" ] ; then
104 ln -s ../usr/bin/cpp $root/lib
105 fi
106 if [ ! -f "$root/usr/bin/cc" ] ; then
107 ln -s gcc $root/usr/bin/cc
108 fi
109 }
111 # Rules to clean the package
112 clean_wok()
113 {
114 rm -r $SOURCE-$VERSION-build
115 }