From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 C98921382C5 for ; Mon, 21 May 2018 17:05:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A9ADE0AF2; Mon, 21 May 2018 17:05:20 +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 643A5E0AF2 for ; Mon, 21 May 2018 17:05:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 88879335C73 for ; Mon, 21 May 2018 17:05:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA0CD2B7 for ; Mon, 21 May 2018 17:05:15 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1526922182.e8a42fffb7f6c8ef7c2283cb40af097b4582e888.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/mtink/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/mtink/mtink-1.0.16-r1.ebuild X-VCS-Directories: net-print/mtink/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: e8a42fffb7f6c8ef7c2283cb40af097b4582e888 X-VCS-Branch: master Date: Mon, 21 May 2018 17:05:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d98bd970-214b-4e56-b332-29ff21c6b5c7 X-Archives-Hash: 65f9776304983b5d6f72b4f42a579632 commit: e8a42fffb7f6c8ef7c2283cb40af097b4582e888 Author: Michael Mair-Keimberger gmail com> AuthorDate: Mon May 21 08:08:44 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Mon May 21 17:03:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8a42fff net-print/mtink: remove old Closes: https://github.com/gentoo/gentoo/pull/8511 net-print/mtink/mtink-1.0.16-r1.ebuild | 80 ---------------------------------- 1 file changed, 80 deletions(-) diff --git a/net-print/mtink/mtink-1.0.16-r1.ebuild b/net-print/mtink/mtink-1.0.16-r1.ebuild deleted file mode 100644 index eabf2d90655..00000000000 --- a/net-print/mtink/mtink-1.0.16-r1.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit eutils base - -DESCRIPTION="mtink is a status monitor and inkjet cartridge changer for some Epson printers" -HOMEPAGE="http://xwtools.automatix.de/" -SRC_URI="http://xwtools.automatix.de/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~sparc x86" -IUSE="cups doc X" - -DEPEND="X? ( x11-libs/libX11 - x11-libs/libXpm - x11-libs/libXt - >=x11-libs/motif-2.3:0 ) - cups? ( net-print/cups ) - virtual/libusb:0" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-options.patch" - "${FILESDIR}/${P}-overflow.patch" -) - -src_configure() { - if use X ; then - ./Configure || die - else - ./Configure -x || die - fi -} - -src_compile() { - local mytargets - mytargets="ttink detect/askPrinter mtinkd" - - if use X; then - mytargets="${mytargets} mtink mtinkc"; - fi - - emake ${mytargets} -} - -src_install() { - dobin ttink detect/askPrinter - - if use X; then - dobin mtinkc mtink - fi - - dosbin mtinkd - - newinitd "${FILESDIR}"/mtinkd.rc mtinkd - newconfd "${FILESDIR}"/mtinkd.confd mtinkd - - if use cups; then - exeinto /usr/lib/cups/backend - doexe etc/mtink-cups - fi - - dodoc README CHANGE.LOG - use doc && \ - dohtml html/*.gif html/*.html -} - -pkg_postinst() { - # see #70310 - chmod 700 /var/mtink /var/run/mtink 2>/dev/null - - elog - elog "mtink needs correct permissions to access printer device." - elog "To do this you either need to run the following chmod command:" - elog "chmod 666 /dev/" - elog "or set the suid bit on mtink, mtinkc and ttink in /usr/bin" - elog -}