You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
790 B
39 lines
790 B
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
DESCRIPTION="Binary Decision Diagram Package"
|
|
HOMEPAGE="http://www.itu.dk/research/buddy/"
|
|
SRC_URI="http://www.itu.dk/research/buddy/buddy22.tar.gz"
|
|
|
|
LICENSE="buddy"
|
|
SLOT="0"
|
|
KEYWORDS="x86 ~ppc"
|
|
IUSE=""
|
|
|
|
S=${WORKDIR}/buddy22
|
|
|
|
src_compile() {
|
|
emake \
|
|
CFLAGS="${CFLAGS}" \
|
|
LIBDIR=usr/lib \
|
|
INCDIR=usr/include \
|
|
|| die
|
|
}
|
|
|
|
src_install() {
|
|
dodir /usr/lib /usr/include
|
|
emake install \
|
|
LIBDIR="${D}"/usr/lib \
|
|
INCDIR="${D}"/usr/include || die
|
|
dodoc CHANGES README doc/*.txt
|
|
insinto /usr/share/doc/${P}/ps
|
|
doins doc/*.ps
|
|
insinto /usr/share/${PN}/examples
|
|
cd examples
|
|
for example in *; do
|
|
tar -czf ${example}.tar.gz ${example}
|
|
doins ${example}.tar.gz
|
|
done
|
|
}
|