blob: 3d3ff762dca392d8e8bc1d7050ab513053410e6b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/probe/probe-2.11.050121.ebuild,v 1.3 2010/06/28 15:51:06 jlec Exp $
inherit toolchain-funcs
MY_P="${PN}.${PV}"
DESCRIPTION="Evaluates atomic packing within or between molecules"
HOMEPAGE="http://kinemage.biochem.duke.edu/software/probe.php"
SRC_URI="http://kinemage.biochem.duke.edu/ftpsite/pub/software/probe/${MY_P}.src.tgz"
LICENSE="richardson"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
# Respect CC
sed -i \
-e 's:cc:$(CC):g' \
"${S}"/Makefile || die
}
src_compile() {
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
MACHINEFLAGS="${LDFLAGS}" \
|| die "make failed"
}
src_install() {
dobin "${S}"/probe || die
dodoc "${S}"/README* || die
}
|