summaryrefslogtreecommitdiff
blob: 69a97bf28d986a4def0eb151eac8dfb3e9627226 (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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=4

AUTOTOOLS_AUTORECONF=yes

inherit autotools-utils fortran-2

PATCH="612"

DESCRIPTION="Additional fortran library for ccp4"
HOMEPAGE="http://www.ccp4.ac.uk/main.html"
SRC_URI="ftp://ftp.ccp4.ac.uk/jwc/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE="static-libs"

RDEPEND="
	dev-libs/libjwc_c
	sci-libs/ccp4-libs"
DEPEND="${RDEPEND}"

PATCHES=( "${FILESDIR}"/${PATCH}-gentoo.patch )

src_prepare() {
	rm missing || die
	echo "libjwc_f_la_LIBADD = -ljwc_c -lccp4f" >> Makefile.am || die
	autotools-utils_src_prepare
}

src_install() {
	autotools-utils_src_install
	dohtml doc/*
}