blob: 61cc0928b359de03529844129d982a423b4b29bc (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/buddy/buddy-2.4.ebuild,v 1.4 2009/09/23 20:06:00 patrick Exp $
inherit eutils
DESCRIPTION="BuDDY - A Binary Decision Diagram Package"
HOMEPAGE="http://sourceforge.net/projects/buddy"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc43.patch
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dodoc ChangeLog NEWS AUTHORS README doc/*.txt || \
die "failed to install docs"
insinto /usr/share/doc/${P}/ps
doins doc/*.ps || die "failed to install postscripts files"
insinto /usr/share/${PN}/examples
cd examples
for example in *; do
tar -czf ${example}.tar.gz ${example}
doins ${example}.tar.gz
done
}
|