blob: c99ddf87e092d3cfeab8de7dd2ff8e216e0ffc3e (
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/pdf2djvu/pdf2djvu-0.7.4.ebuild,v 1.1 2010/06/23 10:22:14 ssuominen Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="convert PDF files to DjVu ones"
HOMEPAGE="http://code.google.com/p/pdf2djvu/"
SRC_URI="http://pdf2djvu.googlecode.com/files/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="graphicsmagick nls openmp"
RDEPEND=">=app-text/djvu-3.5.21
>=app-text/poppler-0.12.3-r3[xpdf-headers]
dev-libs/libxml2
dev-libs/libxslt
graphicsmagick? ( media-gfx/graphicsmagick )"
DEPEND="${RDEPEND}
dev-cpp/pstreams
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
src_configure() {
local openmp=disable
use openmp && tc-has-openmp && openmp=enable
econf \
--${openmp}-openmp \
$(use_enable nls) \
$(use_with graphicsmagick)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc doc/*.txt
}
|