blob: 72550e42715b2ff0fa80a7ae02bb33ee81356368 (
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
48
49
50
51
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/rarian/rarian-0.8.1-r2.ebuild,v 1.12 2013/04/13 20:56:41 ago Exp $
EAPI=4
inherit eutils libtool
DESCRIPTION="A documentation metadata library"
HOMEPAGE="http://rarian.freedesktop.org/"
SRC_URI="http://${PN}.freedesktop.org/Releases/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="static-libs"
RDEPEND="dev-libs/libxslt
|| ( sys-apps/util-linux app-misc/getopt )"
DEPEND="${RDEPEND}
!<app-text/scrollkeeper-9999"
DOCS=( ChangeLog NEWS README )
src_prepare() {
# Fix uri of omf files produced by rarian-sk-preinstall, see bug #302900
epatch "${FILESDIR}/${P}-fix-old-doc.patch"
# remove unneeded line, bug #240564
sed "s/ (foreign dist-bzip2 dist-gzip)//" -i configure || die "sed failed"
# bug #409811, https://bugs.freedesktop.org/show_bug.cgi?id=53264
# sed to avoid autoreconf
if ! has_version sys-apps/util-linux; then
sed -e 's/getopt -/getopt-long -/' \
-i util/rarian-sk-update.in || die "sed 2 failed"
fi
elibtoolize ${ELTCONF}
}
src_configure() {
econf \
--localstatedir="${EPREFIX}"/var \
$(use_enable static-libs static)
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}
|