blob: 52c1beb0b48c914af0627741bfb25a5eed38cabd (
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
|
# Copyright 1999-2010 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-r1.ebuild,v 1.7 2010/08/14 16:20:44 armin76 Exp $
inherit eutils gnome2
DESCRIPTION="A documentation metadata library"
HOMEPAGE="http://www.freedesktop.org"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE=""
RDEPEND="dev-libs/libxslt"
DEPEND="${RDEPEND}
!<app-text/scrollkeeper-9999"
DOCS="ChangeLog NEWS README"
GCONF=""
src_unpack() {
# You cannot run src_unpack from gnome2; it will break the install by
# calling gnome2_omf_fix
unpack ${A}
cd "${S}"
# 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"
elibtoolize ${ELTCONF}
}
src_compile() {
gnome2_src_compile --localstatedir=/var
}
|