blob: 3959f55763d397b3ef54473381d0dcd7c06283a7 [file] [log] [blame]
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils base
DESCRIPTION="Versatile tool to convert Hewlett-Packard's HP-GL plotter language into other graphics formats"
HOMEPAGE="https://www.gnu.org/software/hp2xx/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="
media-libs/libpng
media-libs/tiff
sys-libs/zlib
virtual/jpeg
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-r1.patch" )
src_prepare() {
base_src_prepare
cp -v makes/generic.mak sources/Makefile || die
}
src_compile() {
cd "${S}/sources" || die
emake all
}
src_install() {
dodir /usr/bin /usr/share/info /usr/share/man/man1
make prefix="${D}/usr" \
mandir="${D}/usr/share/man" \
infodir="${D}/usr/share/info" \
install || die
}