You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-gfx/hp2xx/hp2xx-3.4.4.ebuild

45 lines
829 B

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils base
DESCRIPTION="Convert Hewlett-Packard's HP-GL plotter language to other graphics formats"
HOMEPAGE="https://www.gnu.org/software/hp2xx/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
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
}