blob: e52231d4ae2705c60e260047514396d2e5de70c1 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/zathura/zathura-0.0.2.ebuild,v 1.2 2010/03/05 15:08:49 ssuominen Exp $
EAPI=2
inherit eutils toolchain-funcs
DESCRIPTION="A highly customizable and functional PDF viewer based on poppler and GTK+"
HOMEPAGE="http://zathura.pwmt.org/"
SRC_URI="http://zathura.pwmt.org/download/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=x11-libs/cairo-1.8.8
>=x11-libs/gtk+-2.18.6:2
>=app-text/poppler-0.12.3-r3[cairo]"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-build.patch
}
src_compile() {
tc-export CC
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README
}
|