blob: dda8a47d6036ba7a8b51cc5ec5e222685191b41b (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/xmingw-gcc/xmingw-gcc-3.4.2-r1.ebuild,v 1.4 2005/09/22 23:13:43 cretin Exp $
MY_P=${P/xmingw-/}
S=${WORKDIR}/${MY_P}
MINGW_PATCH=gcc-3.4.2-20040916-1-src.diff.gz
RUNTIME=mingw-runtime-3.7
W32API=w32api-3.2
DESCRIPTION="The GNU Compiler Collection - i386-mingw32msvc-gcc only"
HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html"
SRC_URI="ftp://gcc.gnu.org/pub/gcc/releases/${MY_P}/${MY_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 ~amd64"
IUSE="fortran gcj debug nocxx"
DEPEND="dev-util/xmingw-binutils"
src_unpack() {
unpack ${MY_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.4.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() {
export PATH=$PATH:/opt/xmingw/bin:/opt/xmingw/i386-mingw32msvc/bin
unset CFLAGS CXXFLAGS
myconf=""
if has_version dev-util/xmingw-runtime \
&& has_version dev-util/xmingw-w32api
then
lang=c
use nocxx || lang="${lang},c++"
use fortran && lang="${lang},f77"
if use gcj; then
lang=${lang},java
myconf="${myconf} --enable-libgcj --disable-libgcj-debug --disable-java-awt \
--enable-java-gc=boehm --enable-interpreter --enable-hash-sychronization"
fi
else
lang=c
fi
if use debug; then
myconf="${myconf} --enable-debug"
else
myconf="${myconf} --disable-debug"
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 \
${myconf} \
|| die "configure failed"
emake || die "emake failed"
}
src_install() {
export PATH=$PATH:/opt/xmingw/bin:/opt/xmingw/i386-mingw32msvc/bin
make DESTDIR="${D}" install || die "make install failed"
doenvd ${FILESDIR}/05xmingw
}
pkg_config() {
einfo "Now emerge dev-util/xmingw-runtime and remerge dev-util/xmingw-gcc"
einfo "if you require fortran, java or C++ support"
}
|