blob: 51aa075a037de530b856e8b7137ebebb550357ef (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/magic/magic-7.1-r2.ebuild,v 1.7 2004/06/24 22:09:46 agriffis Exp $
inherit eutils
DESCRIPTION="The VLSI design CAD tool"
HOMEPAGE="http://vlsi.cornell.edu/magic/"
SRC_URI="http://vlsi.cornell.edu/magic/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="sys-apps/findutils
dev-lang/perl
>=app-shells/tcsh-6.10-r3
sys-libs/libtermcap-compat"
RDEPEND="sys-libs/libtermcap-compat"
src_unpack() {
unpack ${A}
# Patch to use FHS paths
epatch ${FILESDIR}/${P}-fhs.patch
# Patch for GCC 3.2 compatibility
epatch ${FILESDIR}/${P}-gcc3.2.patch
# some gcc 3.3 stuff, paths...
cd ${S}
# work around cvs problem
sed -i 's/\$Header/\$NO_RCS_Header/' magic/proto.magic
epatch ${FILESDIR}/${P}-misc.patch
# Insert our idea of configuration file
cp ${FILESDIR}/defs.mak-${PV}-r2 ${S}/defs.mak
scripts/makedbh database/database.h.in database/database.h
# 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() {
# this program does not like optimizations or parallel builds
make || die
egrep -q "^make.*Error" make.log && die "Error while compiling - please add ${S}/make.log to your error report."
}
src_install() {
make DESTDIR=${D} install || die
insinto /etc/env.d
doins ${FILESDIR}/10magic
keepdir /var/lock/magic
chmod +t ${D}/var/lock/magic
chmod ugo+rwx ${D}/var/lock/magic
cd ${D}/usr/lib/magic
mv * ${D}/usr/share/magic/
cd ${D}/usr/lib
mv *.h *.a magic/
ln -s ../../share/magic/sys magic/sys
ln -s ../../share/magic/scm magic/scm
ln -s ../../share/magic/tutorial magic/tutorial
}
|