blob: 05c1be8ea93194c98fc69d27c8be6eb105ccd7bd (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/oc/oc-1.0.ebuild,v 1.1 2009/12/12 18:12:31 bicatali Exp $
EAPI=2
inherit eutils
DESCRIPTION="Network Data Access Protocol client C library"
HOMEPAGE="http://opendap.org/"
SRC_URI="http://opendap.org/pub/OC/source/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="net-misc/curl"
DEPEND="${RDEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README ChangeLog NEWS
if use doc; then
insinto /usr/share/doc/${PF}
doins *.html || die
fi
}
|