diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2013-08-09 07:00:02 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2013-08-09 07:00:02 +0000 |
commit | 1c72a4ea08ed23b399b315ed26b3df56e6d7b671 (patch) | |
tree | 64c06da8e8dad5cb7f721b5ee0e8daf3c3325848 /net-print | |
parent | global use flag "git" (diff) | |
download | gentoo-2-1c72a4ea08ed23b399b315ed26b3df56e6d7b671.tar.gz gentoo-2-1c72a4ea08ed23b399b315ed26b3df56e6d7b671.tar.bz2 gentoo-2-1c72a4ea08ed23b399b315ed26b3df56e6d7b671.zip |
Cleanup old
(Portage version: 2.1.13.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/pnm2ppa/ChangeLog | 7 | ||||
-rw-r--r-- | net-print/pnm2ppa/pnm2ppa-1.12.ebuild | 85 |
2 files changed, 5 insertions, 87 deletions
diff --git a/net-print/pnm2ppa/ChangeLog b/net-print/pnm2ppa/ChangeLog index d90d9582c464..8628fa5abaa6 100644 --- a/net-print/pnm2ppa/ChangeLog +++ b/net-print/pnm2ppa/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-print/pnm2ppa -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/pnm2ppa/ChangeLog,v 1.19 2012/07/03 08:32:18 scarabeus Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/pnm2ppa/ChangeLog,v 1.20 2013/08/09 07:00:02 mrueg Exp $ + + 09 Aug 2013; Manuel Rüger <mrueg@gentoo.org> -pnm2ppa-1.12.ebuild: + Cleanup old *pnm2ppa-1.13-r1 (03 Jul 2012) diff --git a/net-print/pnm2ppa/pnm2ppa-1.12.ebuild b/net-print/pnm2ppa/pnm2ppa-1.12.ebuild deleted file mode 100644 index 39ce933dd94a..000000000000 --- a/net-print/pnm2ppa/pnm2ppa-1.12.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/pnm2ppa/pnm2ppa-1.12.ebuild,v 1.15 2009/07/18 18:24:17 ssuominen Exp $ - -EAPI=2 -inherit flag-o-matic toolchain-funcs - -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" - -KEYWORDS="~amd64 ~x86" -SLOT="0" -LICENSE="GPL-2" -IUSE="" - -RDEPEND="app-text/enscript - dev-util/dialog" -DEPEND="${RDEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-gentoo.diff -} - -src_compile() { - tc-export CC - append-flags -DNDEBUG -DLANG_EN - - emake || die "emake failed" - - cd ppa_protocol - emake || die "emake failed" -} - -src_install () { - dodir /etc /usr/{bin,share/man/man1} - - emake BINDIR="${D}/usr/bin" CONFDIR="${D}/etc" \ - MANDIR="${D}/usr/share/man/man1" install \ - || die "emake install failed" - - dobin utils/Linux/detect_ppa utils/Linux/test_ppa || die "dobin failed" - - insinto /usr/share/pnm2ppa - doins -r lpd pdq || die "doins failed" - exeinto /usr/share/pnm2ppa/lpd - doexe lpd/lpdsetup || die "doexe failed" - - exeinto /usr/share/pnm2ppa/sample_scripts - doexe sample_scripts/* || die "doexe failed" - - cd "${S}"/pdq - exeinto /etc/pdq/drivers/ghostscript - doexe gs-pnm2ppa || die "doexe failed" - exeinto /etc/pdq/interfaces - doexe dummy || die "doexe failed" - - cd "${S}"/docs/en - dodoc CALIBRATION*txt COLOR*txt PPA*txt RELEASE* CREDITS README \ - TODO || die "dodoc failed" - - cd "${S}"/docs/en/sgml - insinto /usr/share/doc/${PF} - doins *.sgml || die "doins failed" - - cd "${S}" - dohtml -r . || die "dohtml failed" -} - -pkg_postinst() { - elog "Now, you *must* edit /etc/pnm2ppa.conf and choose (at least)" - elog "your printer model and papersize." - echo "" - elog "Run calibrate_ppa to calibrate color offsets." - echo "" - elog "Read the docs in /usr/share/pnm2ppa/ to configure the printer," - elog "configure lpr substitutes, cups, pdq, networking etc." - echo "" - elog "Note that lpr and pdq drivers *have* been installed, but if your" - elog "config file management has /etc blocked (the default), they have" - elog "been installed under different filenames. Read the appropriate" - elog "Gentoo documentation for more info." - echo "" - elog "Note: lpr has been configured for default papersize letter" -} |