blob: bfae1eb9612c087ac9b96f615a8fc5b83c5fd40f (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/magic/magic-7.1-r1.ebuild,v 1.4 2002/12/15 17:51:19 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="The VLSI design CAD tool"
SRC_URI="http://vlsi.cornell.edu/magic/${P}.tar.gz"
HOMEPAGE="http://vlsi.cornell.edu/magic/"
KEYWORDS="x86"
LICENSE="as-is"
DEPEND="sys-apps/findutils
sys-devel/perl
>=app-shells/tcsh-6.10-r3
sys-libs/libtermcap-compat"
RDEPEND="sys-libs/libtermcap-compat"
SLOT="7"
src_unpack() {
unpack ${A}
# Patch to use FHS paths
patch -p1 < ${FILESDIR}/${P}-fhs.patch
# Patch for GCC 3.2 compatibility
patch -p1 < ${FILESDIR}/${P}-gcc3.2.patch
# Insert our idea of configuration file
cp ${FILESDIR}/defs.mak-${PV}-r1 ${S}/defs.mak
# Clean up all the pre-GCC-3.2 preprocessor directives
einfo "Cleansing preprocessor directives"
find ./ -name "*.[ch]" | xargs -n 1 perl -pi -e 's/^\#endif..*$/\#endif/'
find ./ -name "*.[ch]" | xargs -n 1 perl -pi -e 's/^\#else..*$/\#else/'
}
src_compile() {
emake || die
}
src_install () {
make DESTDIR=${D} install || die
insinto /etc/env.d
doins ${FILESDIR}/10magic
}
|