blob: 7805ff6ec7b84b951b75aa6d9b6a4a11f3211d45 (
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
41
42
43
44
45
46
47
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/autodock/autodock-4.0.1.ebuild,v 1.2 2007/06/21 14:58:03 ribosome Exp $
MY_PN="autodocksuite"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A suite of automated docking tools"
HOMEPAGE="http://autodock.scripps.edu/"
SRC_URI="mirror://gentoo/${MY_PN}/${MY_P}-src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}/${MY_P}/src"
src_compile() {
cd autodock/
econf || die "econf failed"
emake || die "build failed"
cd ..
cd autogrid/
econf || die "econf failed"
emake || die "build failed"
cd ..
}
src_install() {
dobin autodock/autodock4
dobin autogrid/autogrid4
}
pkg_postinst() {
echo
einfo "The AutoDock development team requests all users to fill out the"
einfo "registration form at:"
einfo
einfo "\thttp://autodock.scripps.edu/downloads/autodock-registration"
einfo
einfo "The number of unique users of AutoDock is used by Prof. Arthur J."
einfo "Olson and the Scripps Research Institude to support grant"
einfo "applications."
echo
}
|