blob: c5a49c3b54863c22818dc4d81634ad84ab56b98f (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/openpgm/openpgm-5.1.118.ebuild,v 1.12 2014/02/16 19:55:38 vapier Exp $
EAPI=3
inherit autotools
DESCRIPTION="OpenPGM is an open source implementation of the Pragmatic General
Multicast (PGM) specification"
HOMEPAGE="http://code.google.com/p/openpgm"
SRC_URI="http://openpgm.googlecode.com/files/libpgm-${PV}~dfsg.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~x86-fbsd"
IUSE="static-libs"
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}/libpgm-${PV}~dfsg/${PN}/pgm"
src_prepare() {
eautoreconf
}
src_configure() {
econf \
$(use_enable static-libs static) \
--disable-dependency-tracking
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc "${S}"/../doc/* "${S}"/README
# remove useless .la files
find "${D}" -name '*.la' -delete
# remove useless .a (only for non static compilation)
use static-libs || find "${D}" -name '*.a' -delete
}
|