summaryrefslogtreecommitdiffstats
path: root/extra/gcc3/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'extra/gcc3/Pkgfile')
-rwxr-xr-xextra/gcc3/Pkgfile33
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/gcc3/Pkgfile b/extra/gcc3/Pkgfile
new file mode 100755
index 000000000..bee88a026
--- /dev/null
+++ b/extra/gcc3/Pkgfile
@@ -0,0 +1,33 @@
+# Description: Le compilateur gcc version 3
+# URL: http://gnu.org
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: gcc3-libs
+
+name=gcc3
+version=3.3.6
+release=1
+group=dev
+source=( http://ftp.gnu.org/gnu/gcc/gcc-$version/gcc-$version.tar.bz2\
+ http://www.linuxfromscratch.org/patches/blfs/svn/gcc-3.3.6-no_fixincludes-1.patch\
+ http://www.linuxfromscratch.org/patches/blfs/svn/gcc-3.3.6-linkonce-1.patch)
+
+
+build() {
+ mkdir -p $PKG/usr/lib
+ cd gcc-$version
+ patch -Np1 -i ../gcc-3.3.6-no_fixincludes-1.patch
+ patch -Np1 -i ../gcc-3.3.6-linkonce-1.patch
+ mkdir ../gcc-build
+ cd ../gcc-build
+ ../gcc-$version/configure --prefix=/opt/gcc-$version \
+ --enable-shared \
+ --enable-languages=c,c++ \
+ --enable-threads=posix
+ make bootstrap
+# make -k check
+ make DESTDIR=$PKG install
+ mv -v $PKG/opt/gcc-3.3.6/lib/libstdc++.so.5* \
+ $PKG/usr/lib
+ rm -r $PKG/usr
+}