summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/getxbook/getxbook-1.2.ebuild')
-rw-r--r--app-text/getxbook/getxbook-1.2.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/app-text/getxbook/getxbook-1.2.ebuild b/app-text/getxbook/getxbook-1.2.ebuild
deleted file mode 100644
index b1acfc5e944d..000000000000
--- a/app-text/getxbook/getxbook-1.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Download books from google, amazon, barnes and noble"
-HOMEPAGE="http://njw.me.uk/software/getxbook/"
-SRC_URI="http://njw.me.uk/software/getxbook/${P}.tar.xz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="pdf djvu ocr tk"
-
-DEPEND=""
-RDEPEND="
- djvu? ( app-text/djvu )
- pdf? ( media-gfx/imagemagick )
- ocr? (
- app-text/tesseract
- pdf? ( media-gfx/exact-image app-text/pdftk )
- )
- tk? ( dev-lang/tk:0= )"
-
-src_prepare() {
- default
- eapply "${FILESDIR}"/${P}.patch
- tc-export CC AR
-}
-
-src_install() {
- DOCS=( README LEGAL )
- default
-
- use pdf && dobin extras/mkpdf.sh
- use djvu && dobin extras/mkdjvu.sh
-
- if use ocr; then
- dobin extras/mkocrtxt.sh
- use pdf && dobin extras/mkocrpdf.sh
- use djvu && dobin extras/mkocrdjvu.sh
- fi
- use tk && dobin getxbookgui.tcl
-}