blob: 9d5fa5f73c2c1c863dd2b7701d658d30b51f3d14 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/apvlv/apvlv-0.0.9.6.ebuild,v 1.1 2010/04/21 09:29:48 ssuominen Exp $
EAPI=2
inherit eutils
DESCRIPTION="Alf's PDF Viewer Like Vim"
HOMEPAGE="http://code.google.com/p/apvlv/"
SRC_URI="http://apvlv.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug djvu"
RDEPEND=">=x11-libs/gtk+-2.4:2
>=app-text/poppler-0.12.3-r3[cairo]
djvu? ( app-text/djvu )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
econf \
$(use_enable debug) \
--disable-dependency-tracking \
--with-sysconfdir=/etc/${PN} \
--with-docdir=/usr/share/doc/${PF} \
--with-mandir=/usr/share/man \
$(use_with djvu)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS NEWS README THANKS TODO
newicon icons/pdf.png ${PN}.png
make_desktop_entry ${PN} "Alf's PDF Viewer Like Vim" ${PN} "Office;Viewer"
}
|