diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2018-05-21 10:08:44 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-21 13:03:02 -0400 |
commit | e8a42fffb7f6c8ef7c2283cb40af097b4582e888 (patch) | |
tree | 3ea8cee971c3162c63fdfb84c97a8e35b3d380f2 /net-print | |
parent | 81c2cb275e2ec201f8650a2a490cd2486314f94a (diff) | |
download | gentoo-e8a42fffb7f6c8ef7c2283cb40af097b4582e888.tar.gz gentoo-e8a42fffb7f6c8ef7c2283cb40af097b4582e888.tar.xz |
net-print/mtink: remove old
Closes: https://github.com/gentoo/gentoo/pull/8511
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/mtink/mtink-1.0.16-r1.ebuild | 80 |
1 files changed, 0 insertions, 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/<device>" - elog "or set the suid bit on mtink, mtinkc and ttink in /usr/bin" - elog -} |