1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# $Id: PKGBUILD 25249 2009-01-24 18:28:11Z andyrtr $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=gcc
pkgver=4.3.3
pkgrel=1
#_snapshot=4.3-20080724
pkgdesc="The GNU Compiler Collection"
arch=(i686 x86_64)
license=('GPL' 'LGPL')
groups=('base-devel')
url="http://gcc.gnu.org"
depends=('binutils>=2.19' "gcc-libs>=${pkgver}" 'mpfr>=2.3.1' 'texinfo')
makedepends=('flex')
replaces=('gcc-fortran' 'gcc-objc')
options=('!libtool')
install=gcc.install
source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-{core,g++,fortran,objc,java}-${pkgver}.tar.bz2
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-{core,g++,fortran,objc,java}-${_snapshot}.tar.bz2
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-man-20080118.tar.bz2
gcc_pure64.patch
gcc-hash-style-both.patch
buildfix_new_bison.patch)
md5sums=('1739288c2c7b1472796b33d641dbdbbd'
'18428e313a9927d38b313e688c62219b'
'8771e6190dd4f3178b2a7978d2380a5d'
'125b75947c763ba59b7ea95d3739d431'
'068938366ee0be5b70112bdf485898b4'
'990881456a89b1ffbd68d2d7188759da'
'4030ee1c08dd1e843c0225b772360e76'
'bb420bc84b1104455b7230b1cd4b96c2'
'412fb8ebb30958eb1a93e9bd89413dd7')
build() {
if ! locale -a | grep ^de_DE; then
echo "You need the de_DE locale to build gcc."
return 1
fi
cd ${srcdir}/gcc-${pkgver}
#cd ${srcdir}/gcc-${_snapshot}
# Don't install libiberty
sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
if [ "${CARCH}" = "x86_64" ]; then
patch -Np1 -i ../gcc_pure64.patch || return 1
fi
patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch || return 1
patch -Np0 -i ${srcdir}/buildfix_new_bison.patch || return 1
echo ${pkgver} > gcc/BASE-VER
mkdir build
cd build
../configure --prefix=/usr --enable-shared \
--enable-languages=c,c++,fortran,objc,obj-c++,treelang \
--enable-threads=posix --mandir=/usr/share/man --infodir=/usr/share/info \
--enable-__cxa_atexit --disable-multilib --libdir=/usr/lib \
--libexecdir=/usr/lib --enable-clocale=gnu --disable-libstdcxx-pch \
--with-tune=generic
make || return 1
make -j1 DESTDIR=${pkgdir} install || return 1
mkdir -p ${pkgdir}/lib
ln -sf ../usr/bin/cpp ${pkgdir}/lib/cpp
ln -sf gcc ${pkgdir}/usr/bin/cc
ln -sf g++ ${pkgdir}/usr/bin/c++
# install the libstdc++ man pages
mkdir -p ${pkgdir}/usr/share/man/man3
install -m644 ${srcdir}/man/man3/* ${pkgdir}/usr/share/man/man3/
# Remove libraries and translations in gcc-libs
rm -f ${pkgdir}/usr/lib/lib*
find ${pkgdir} -name libstdc++.mo -delete
# Remove fixed includes, either no need for them, or they're not complete
rm -rf ${pkgdir}/usr/lib/${CHOST}/${pkgver}/include-fixed/*
rm -f ${pkgdir}/usr/share/info/dir
}
|