blob: 29cb693e30248cd04e0f7daea13b375859a4a2d6 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ezm3/ezm3-1.2.ebuild,v 1.1 2004/07/11 15:50:22 vapier Exp $
inherit eutils
MY_P="${P/-/-snap-}"
EZM3="ezm3-1.1"
EZM3_TARGET="LINUXLIBC6"
DESCRIPTION="stripped down m3 compiler for building cvsup"
HOMEPAGE="http://www.polstra.com/projects/freeware/ezm3/"
SRC_URI="ftp://ftp.freebsd.org/pub/FreeBSD/development/CVSup/ezm3/${P}-src.tar.bz2
x86? ( ftp://ftp.freebsd.org/pub/FreeBSD/development/CVSup/ezm3/${P}-LINUXLIBC6-boot.tar.bz2 )
mirror://gentoo/${P}-PPC_LINUX.patch.bz2"
# ppc? ( mirror://gentoo/${P}-PPC_LINUX-boot.tar.bz2 )"
LICENSE="BSD"
SLOT="0"
KEYWORDS="-* x86 ppc"
IUSE="X opengl static"
DEPEND="virtual/libc
dev-util/yacc
>=sys-apps/sed-4
!virtual/m3"
RDEPEND="virtual/libc"
PROVIDE="virtual/m3"
seduse() {
useq !${1} && echo "${2}" || echo ":"
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${WORKDIR}/${P}-PPC_LINUX.patch
}
src_compile() {
# when you do make, ezm3 builds & installs at the same time so we control
# where it is going to install the compiler and stuff
# (to not violate sandbox)
sed -i \
-e "s:/usr/local:/usr:" \
m3config/src/${EZM3_TARGET} \
|| die "sed ${EZM3_TARGET} failed"
echo "M3CC_MAKE = [\"make\", \"BISON=yacc\"]" >> m3config/src/${EZM3_TARGET}
# now we disable X and OpenGL if the user doesnt have them in their USE var
sed -i \
-e "s:/usr/local:/usr:" \
-e "s:touch:ranlib:" \
-e "s:`seduse X 'import_X11():import_X11() is\nend\nproc dont_import_X11()'`:" \
-e "s:`seduse opengl 'import_OpenGL():import_OpenGL() is\nend\nproc dont_import_OpenGL()'`:" \
m3config/src/COMMON \
|| die "sed COMMON failed"
# finally we compile the m3 compiler
# we clear the CFLAGS because:
# (1) higher optimizations cause issues
# (2) build system uses gcc-3.2.3 ... dont want to trigger CFLAG mismatches
# (3) it doesnt really matter ... we are just building cvsup ;)
# Remove P because it's used internally ;x
env -u P -u CFLAGS emake -j1 exportall || die "ezm3 compile failed"
}
src_install() {
cd binaries/${EZM3_TARGET}
cp -a usr ${D}/ || die
rm -rf ${D}/usr/man
}
|