summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2013-08-16 09:28:31 +0000
committerManuel Rüger <mrueg@gentoo.org>2013-08-16 09:28:31 +0000
commitaab9fc4b570c4729de7c2a342cf269a857334c3b (patch)
treec391d7365dffb3f32610336a3e160ad61bce2a24 /net-print/mtink
parentCleanup. (diff)
downloadgentoo-2-aab9fc4b570c4729de7c2a342cf269a857334c3b.tar.gz
gentoo-2-aab9fc4b570c4729de7c2a342cf269a857334c3b.tar.bz2
gentoo-2-aab9fc4b570c4729de7c2a342cf269a857334c3b.zip
Cleanup.
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-print/mtink')
-rw-r--r--net-print/mtink/ChangeLog5
-rw-r--r--net-print/mtink/mtink-1.0.11.ebuild69
2 files changed, 4 insertions, 70 deletions
diff --git a/net-print/mtink/ChangeLog b/net-print/mtink/ChangeLog
index 9917c0a73af5..4ebf5c08d440 100644
--- a/net-print/mtink/ChangeLog
+++ b/net-print/mtink/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-print/mtink
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/mtink/ChangeLog,v 1.40 2013/03/17 16:21:53 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/mtink/ChangeLog,v 1.41 2013/08/16 09:28:31 mrueg Exp $
+
+ 16 Aug 2013; Manuel Rüger <mrueg@gentoo.org> -mtink-1.0.11.ebuild:
+ Cleanup.
17 Mar 2013; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
Add proxy-maintainers to metadata.xml
diff --git a/net-print/mtink/mtink-1.0.11.ebuild b/net-print/mtink/mtink-1.0.11.ebuild
deleted file mode 100644
index 2570e6eb17e5..000000000000
--- a/net-print/mtink/mtink-1.0.11.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/mtink/mtink-1.0.11.ebuild,v 1.12 2012/10/24 19:25:00 ulm Exp $
-
-EAPI=1
-
-inherit eutils
-
-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}"
-
-src_compile() {
- sed -i -e 's:DBG =.*:DBG =:' Makefile
- local mytargets
- mytargets="ttink detect/askPrinter mtinkd"
- if use X;
- then
- mytargets="${mytargets} mtink mtinkc";
- fi
- make ${mytargets} || die "Compile problem"
-}
-
-src_install() {
- exeinto /usr/bin
- if use X; then
- doexe mtinkc mtink ttink detect/askPrinter
- else
- doexe ttink detect/askPrinter
- fi
-
- dosbin mtinkd
-
- newinitd "${FILESDIR}"/mtinkd.rc mtinkd
- newconfd "${FILESDIR}"/mtinkd.confd mtinkd
-
- use cups && \
- exeinto /usr/lib/cups/backend; \
- doexe etc/mtink-cups
-
- dodoc README CHANGE.LOG LICENCE
- 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
-}