summaryrefslogtreecommitdiff
path: root/net-print/pnm2ppa/pnm2ppa-1.13-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-21 20:03:12 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-21 20:03:12 +0100
commitf6652ef9c05f9bc15eab1ef2f902f66314418caf (patch)
tree5bab1be3699d2091e75e1731bcde8f2976c534f1 /net-print/pnm2ppa/pnm2ppa-1.13-r1.ebuild
parent5560910b8e280aa828f26c34b4e361b44f5227c4 (diff)
gentoo auto-resync : 21:10:2022 - 20:03:11
Diffstat (limited to 'net-print/pnm2ppa/pnm2ppa-1.13-r1.ebuild')
-rw-r--r--net-print/pnm2ppa/pnm2ppa-1.13-r1.ebuild80
1 files changed, 0 insertions, 80 deletions
diff --git a/net-print/pnm2ppa/pnm2ppa-1.13-r1.ebuild b/net-print/pnm2ppa/pnm2ppa-1.13-r1.ebuild
deleted file mode 100644
index 4cfb04d59fba..000000000000
--- a/net-print/pnm2ppa/pnm2ppa-1.13-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Print driver for Hp Deskjet 710, 712, 720, 722, 820, 1000 series"
-HOMEPAGE="http://pnm2ppa.sourceforge.net"
-SRC_URI="mirror://sourceforge/pnm2ppa/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="syslog"
-
-# en on first place so others can override it
-LANGS="en cs es fr it nl"
-for lng in ${LANGS}; do
- IUSE+=" l10n_${lng}"
-done
-
-RDEPEND="
- app-text/ghostscript-gpl
- net-print/cups
- >=net-print/cups-filters-1.0.43-r1[foomatic]
- sys-libs/glibc
- syslog? ( virtual/logger )"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
-
-src_configure() {
- local lng i withval
-
- for lng in ${LANGS}; do
- if use l10n_${lng}; then
- if [[ -n ${i} ]] ; then
- ewarn "This package supports only one translation at a time."
- ewarn "Overriding previous value: \"${withval}\" with \"${lng}\""
- fi
- withval="${lng}"
- i=true
- fi
- done
-
- econf \
- --with-language="${lng}" \
- --enable-vlink \
- $(use_enable syslog)
-}
-
-src_install() {
- default
-
- dobin utils/Linux/detect_ppa utils/Linux/test_ppa
-
- insinto /usr/share/pnm2ppa
- doins -r lpd pdq
-
- exeinto /usr/share/pnm2ppa/lpd
- doexe lpd/lpdsetup
-
- exeinto /usr/share/pnm2ppa/sample_scripts
- doexe sample_scripts/*
-
- exeinto /etc/pdq/drivers/ghostscript
- doexe pdq/gs-pnm2ppa
-
- exeinto /etc/pdq/interfaces
- doexe pdq/dummy
-
- # install docs
- cd docs/en || die
- dodoc CALIBRATION*txt COLOR*txt PPA*txt RELEASE* CREDITS README sgml/*.sgml
-
- cd "${S}" || die
- docinto html/docs/en
- dodoc docs/en/*.html
- docinto html/ppa_protocol
- dodoc ppa_protocol/*.html
-}