blob: cc6f250f97239690b0a9db9af591b3ab7f8b7f66 (
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/balsa/balsa-3.5.ebuild,v 1.2 2007/01/10 17:45:49 hkbst Exp $
inherit eutils
IUSE=""
DESCRIPTION="The Balsa asynchronous synthesis system"
HOMEPAGE="http://www.cs.manchester.ac.uk/apt/projects/tools/balsa/"
SRC_URI="ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/${PV}/BalsaExamples${PV}.tar.gz
ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/${PV}/BalsaManual${PV}.pdf
ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/${PV}/${P}.tar.gz
ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/${PV}/${PN}-sim-verilog-${PV}.tar.gz
ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/${PV}/${PN}-tech-example-${PV}.tar.gz
ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/${PV}/${PN}-tech-xilinx-${PV}.tar.gz
"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
DEPEND="virtual/libc
sys-devel/binutils
dev-libs/gmp
dev-lang/perl
x11-libs/gtk+
sci-electronics/iverilog
sci-electronics/gplcver"
RDEPEND="${DEPEND}
dev-scheme/guile
media-gfx/graphviz
sci-electronics/gtkwave
sci-electronics/espresso-ab"
BALSA_TECH_AMS="balsa-tech-ams-20030506.tar.gz"
if [ -f ${DISTDIR}/${BALSA_TECH_AMS} ]; then
TECH_AMS=1
fi
src_unpack() {
unpack ${A}
if [ $TECH_AMS ]; then
unpack ${BALSA_TECH_AMS}
fi
sed -i -e "s:\(DEFAULT_INCLUDES = \)\(.*\):\1-I${S}/src/libs/ \2/:" ${WORKDIR}/balsa-sim-verilog-${PV}/libs/Makefile.in
sed -i -e 's/ $(bindir)/ $(DESTDIR)$(bindir)/' ${S}/bin/Makefile.in
sed -i -e 's/ $(balsatypesdir)/ $(DESTDIR)$(balsatypesdir)/' ${S}/share/balsa/types/Makefile.in
sed -i -e 's/ $(balsasimdir)/ $(DESTDIR)$(balsasimdir)/' ${S}/share/balsa/sim/Makefile.in
}
src_compile() {
# compile balsa
einfo "Compiling balsa"
./configure --prefix=/usr/ || die "econf failed"
chmod +x bin/balsa-config
PATH=$PATH:${S}/bin
emake -j1 || die
# configure AMS035 tech
if [ $TECH_AMS ]; then
einfo "Compiling AMS035 tech"
cd ${WORKDIR}/balsa-tech-ams-20030506
econf || die "econf failed"
fi
# config Xilinx FPGA backend
einfo "Compiling Xilinx FPGA backend"
cd ${WORKDIR}/balsa-tech-xilinx-${PV}
econf || die "econf failed"
# config example tech
einfo "Compiling tech example"
cd ${WORKDIR}/balsa-tech-example-${PV}
econf || die "econf failed"
# config verilog simulator wrappers
einfo "Compiling verilog simulator wrappers"
cd ${WORKDIR}/balsa-sim-verilog-${PV}
./configure --includedir=${S}/src/libs/balsasim \
--with-icarus-includes=/usr/include \
--with-icarus-libs=/usr/lib \
--with-cver-includes=/usr/include/cver_pli_incs || die
}
src_install() {
# install balsa
cd ${S}
einfo "Installing balsa"
make DESTDIR=${D} install || die
# install manual and examples
dodir /usr/share/doc/${P}/
cp -pPR ${WORKDIR}/BalsaExamples ${D}/usr/share/doc/${P}/
dodoc ${DISTDIR}/BalsaManual${PV}.pdf
if [ $TECH_AMS ]; then
einfo "Installing AMS035 tech"
cd ${WORKDIR}/balsa-tech-ams-20030506
make DESTDIR=${D} install || die "make install failed"
fi
einfo "Installing Xilinx FPGA tech"
cd ${WORKDIR}/balsa-tech-xilinx-${PV}
make DESTDIR=${D} install || die "make install failed"
einfo "Installing example tech"
cd ${WORKDIR}/balsa-tech-example-${PV}
make DESTDIR=${D} install || die "make install failed"
einfo "Installing verilog simulator wrappers"
cd ${WORKDIR}/balsa-sim-verilog-${PV}
DESTDIR=${D} make install || die "make verilog wrappers failed"
# fix paths
cd ${D}
einfo "Fixing paths"
find . -type f -exec sed -i -e "s:${D}::" {} \;
find . -name "sed*" -exec rm -f {} \;
# add some docs
cd ${S}
einfo "Installing docs"
dodoc AUTHORS COPYING NEWS README TODO
mv ${D}/usr/doc/* ${D}/usr/share/doc/${P}/
rmdir ${D}/usr/doc
# fix collisions
rm -f ${D}/usr/bin/libtool
}
pkg_postinst() {
if [ ! $TECH_AMS ]; then
elog "The AMS035 tech library was not installed."
elog "If you have the appropriate licenses request"
elog "the tech support files directly from balsa@cs.man.ac.uk"
elog "and add them to /usr/portage/distfiles before emerging."
else
elog "The AMS035 tech library was found and installed."
fi
}
|