blob: 932e4b8ab8774e082ea1e6db1f562fbc7128ee11 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/epdfview/epdfview-0.1.7-r1.ebuild,v 1.3 2009/04/10 23:20:31 loki_val Exp $
EAPI="2"
inherit gnome2 flag-o-matic
DESCRIPTION="Lightweight PDF viewer using Poppler and GTK+ libraries."
HOMEPAGE="http://trac.emma-soft.com/epdfview/"
SRC_URI="http://trac.emma-soft.com/epdfview/chrome/site/releases/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="cups nls test"
RDEPEND=">=virtual/poppler-glib-0.5.0[cairo]
>=x11-libs/gtk+-2.6
cups? ( >=net-print/cups-1.1 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
nls? ( sys-devel/gettext )
test? ( dev-util/cppunit )
userland_GNU? ( >=sys-apps/findutils-4.4.0 )"
pkg_setup() {
G2CONF=$(use_with cups)
DOCS="AUTHORS NEWS README THANKS"
append-flags -O0
}
src_prepare() {
gnome2_src_prepare
sed -i -e 's:Icon=icon_epdfview-48:Icon=epdfview:' data/epdfview.desktop || die "desktop sed failed"
}
src_install() {
gnome2_src_install
for size in 24 32 48
do
icnsdir="/usr/share/icons/hicolor/${size}x${size}/apps/"
insinto "${icnsdir}" || die "insinto failed"
newins data/icon_epdfview-${size}.png epdfview.png || die "newins failed"
done
}
|