blob: 973e86b5fd0c96566222d0a21c022440720b4c67 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/probe/probe-2.12.110413.ebuild,v 1.2 2011/06/26 08:48:58 jlec Exp $
EAPI=4
inherit eutils 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/downloads/software/probe/${MY_P}.src.zip"
LICENSE="richardson"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
app-arch/unzip"
S="${WORKDIR}"/trunk
src_prepare() {
epatch "${FILESDIR}"/${PV}-as-needed.patch
# Respect CC
sed -i \
-e 's:cc:$(CC):g' \
"${S}"/Makefile || die
tc-export CC
}
src_install() {
dobin "${S}"/probe
dodoc "${S}"/README*
}
|