From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1122300-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 9BCE913997D
	for <garchives@archives.gentoo.org>; Wed, 13 Nov 2019 09:56:30 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D86BAE08CE;
	Wed, 13 Nov 2019 09:56:29 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id BBBE5E08CE
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Nov 2019 09:56:29 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 6A2AC34CD4B
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Nov 2019 09:56:28 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E29F824
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Nov 2019 09:56:26 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org>
Message-ID: <1573638966.21a4a8bbed8321afc79b45d00ab427f9e9e437a0.ulm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/jpeg2ps/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-gfx/jpeg2ps/jpeg2ps-1.9-r1.ebuild
X-VCS-Directories: media-gfx/jpeg2ps/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 21a4a8bbed8321afc79b45d00ab427f9e9e437a0
X-VCS-Branch: master
Date: Wed, 13 Nov 2019 09:56:26 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 40f3ec5c-0247-4ac1-9f30-d6a658eb8480
X-Archives-Hash: 462b6971a873162579eb5aaec546bb1d

commit:     21a4a8bbed8321afc79b45d00ab427f9e9e437a0
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 13 09:56:06 2019 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 09:56:06 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a4a8bb

media-gfx/jpeg2ps: Remove old.

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 media-gfx/jpeg2ps/jpeg2ps-1.9-r1.ebuild | 53 ---------------------------------
 1 file changed, 53 deletions(-)

diff --git a/media-gfx/jpeg2ps/jpeg2ps-1.9-r1.ebuild b/media-gfx/jpeg2ps/jpeg2ps-1.9-r1.ebuild
deleted file mode 100644
index d3601094ce6..00000000000
--- a/media-gfx/jpeg2ps/jpeg2ps-1.9-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Converts JPEG images to Postscript using a wrapper"
-HOMEPAGE="http://www.pdflib.com/download/free-software/jpeg2ps/"
-SRC_URI="http://www.pdflib.com/products/more/jpeg2ps/${P}.tar.gz"
-
-LICENSE="free-noncomm"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="metric"
-
-DEPEND="sys-apps/sed"
-RDEPEND=""
-
-src_unpack() {
-	unpack ${A}
-
-	#bug 105561
-	epatch "${FILESDIR}"/${P}-include.diff
-}
-
-src_compile() {
-	pagesize=""
-	use metric && pagesize="-DA4"
-	emake CFLAGS="-c ${CFLAGS} ${pagesize}" CC="$(tc-getCC)" || die "emake failed"
-}
-
-src_install() {
-	# The Makefile is hard-coded to install to /usr/local/ so we
-	# simply copy the files manually
-	dobin jpeg2ps || die "dobin failed"
-	doman jpeg2ps.1 || die "doman failed"
-	dodoc jpeg2ps.txt || die "dodoc failed"
-}
-
-pkg_postinst() {
-	elog
-	if [ -z ${pagesize} ]; then
-		elog "By default, this installation of jpeg2ps will generate"
-		elog "letter size output.  You can force A4 output with"
-		elog "    jpeg2ps -p a4 file.jpg > file.ps"
-	else
-		elog "By default, this installation of jpeg2ps will generate"
-		elog "A4 size output.  You can force letter output with"
-		elog "    jpeg2ps -p letter file.jpg > file.ps"
-	fi
-	elog
-}