25 lines
421 B
Bash
25 lines
421 B
Bash
|
# Copyright 1999-2014 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
EAPI=5
|
||
|
|
||
|
MODULE_AUTHOR=LEOCHARRE
|
||
|
MODULE_VERSION=1.11
|
||
|
inherit perl-module
|
||
|
|
||
|
DESCRIPTION="get ocr and images out of a pdf file (deprecated)"
|
||
|
|
||
|
SLOT="0"
|
||
|
KEYWORDS="amd64 x86"
|
||
|
IUSE="-bin test"
|
||
|
|
||
|
SRC_TEST=do
|
||
|
|
||
|
src_install() {
|
||
|
perl-module_src_install
|
||
|
if ! use bin; then
|
||
|
rm -rf "${D}"/usr/bin || die
|
||
|
fi
|
||
|
}
|