blob: cf95cfe5db1aed47fad5b6f104e9e259a294000d (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/imposter/imposter-0.3.ebuild,v 1.7 2012/01/16 11:19:22 ago Exp $
EAPI="2"
inherit eutils
DESCRIPTION="Imposter is a standalone viewer for the presentations created by OpenOffice.org Impress software"
HOMEPAGE="http://imposter.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="iksemel nls"
RDEPEND=">=x11-libs/gtk+-2.4:2
iksemel? ( dev-libs/iksemel )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
src_prepare() {
# Patch by Recai OktaÅŸ <roktas@omu.edu.tr>, backported from CVS...
epatch "${FILESDIR}"/${P}-ignore-modifiers.patch
}
src_configure() {
# FIXME. Iksemel is automagic depend.
econf --disable-dependency-tracking $(use_enable nls)
}
src_compile() {
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README TODO
}
|