blob: ec20cf857e0fd5c901f9bdafe0874ced0ac5f1af (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gfan/gfan-0.5.ebuild,v 1.2 2011/08/13 07:13:05 xarthisius Exp $
EAPI="3"
inherit eutils toolchain-funcs
DESCRIPTION="computes Groebner fans and tropical varities"
HOMEPAGE="http://www.math.tu-berlin.de/~jensen/software/gfan/gfan.html"
SRC_URI="http://www.math.tu-berlin.de/~jensen/software/gfan/${PN}${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/gmp[-nocxx]
sci-libs/cddlib"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}${PV}/"
src_prepare () {
sed -i -e "s/-O2/${CXXFLAGS}/" \
-e "/GPROFFLAG =/d" \
-e "s/g++/$(tc-getCXX)/" \
-e "s/\$(CCLINKER)/& \$(LDFLAGS)/" Makefile || die
}
src_install() {
emake PREFIX="${ED}/usr" install || die "emake install failed"
}
|