blob: f0f9e307819b2f72a29b4c6027d68f2371e92a79 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libjwc_c/libjwc_c-1.1-r2.ebuild,v 1.4 2012/08/20 19:27:15 johu Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils
PATCH="612"
DESCRIPTION="additional c 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"
DEPEND="sci-libs/ccp4-libs"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}"/${PATCH}-gentoo.patch )
src_prepare() {
rm missing || die
echo "libjwc_c_la_LIBADD = -lm -lccp4f" >> Makefile.am || die
autotools-utils_src_prepare
}
|