blob: 071e11553801e64923100277b5e1a700d4ae693a (
plain)
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/xmingw-gcc/xmingw-gcc-3.3.1.ebuild,v 1.2 2003/10/28 19:52:23 cretin Exp $
DESCRIPTION="The GNU Compiler Collection - i386-mingw32msvc-gcc only"
HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html"
P=${P/xmingw-/}
MINGW_PATCH=gcc-3.3.1-20030804-1-src.diff.gz
RUNTIME=mingw-runtime-3.2
W32API=w32api-2.4
SRC_URI="ftp://gcc.gnu.org/pub/gcc/releases/${P}/${P}.tar.bz2
mirror://sourceforge/mingw/${MINGW_PATCH}
mirror://sourceforge/mingw/${RUNTIME}-src.tar.gz
mirror://sourceforge/mingw/${W32API}-src.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="dev-util/xmingw-binutils"
S=${WORKDIR}/${P}
export PATH=$PATH:/opt/xmingw/bin:/opt/xmingw/i386-mingw32msvc/bin
unset CFLAGS CXXFLAGS
src_unpack() {
unpack ${P}.tar.bz2
unpack ${RUNTIME}-src.tar.gz
unpack ${W32API}-src.tar.gz
cd ${S}; gzip -dc ${DISTDIR}/${MINGW_PATCH} | patch -p1
patch -p1 < ${FILESDIR}/gcc-3.3.1-includefix.diff
mkdir -p ${S}/winsup/cygwin ${S}/winsup/w32api
cd ${S}/winsup/cygwin;ln -s ${WORKDIR}/${RUNTIME}/include .
cd ${S}/winsup/w32api;ln -s ${WORKDIR}/${W32API}/include .
}
src_compile() {
cd ${S}
if has_version dev-util/xmingw-runtime \
&& has_version dev-util/xmingw-w32api
then
lang=c,c++
else
lang=c
fi
./configure --target=i386-mingw32msvc --prefix=/opt/xmingw --enable-languages=${lang} --disable-shared --disable-nls --enable-threads --with-gcc --with-gnu-ld --with-gnu-as --disable-win32-registry --enable-sjlj-exceptions --without-x --without-newlib || die
make || die
}
src_install() {
make DESTDIR=${D} install || die
}
|