diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-11-25 17:46:45 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-11-25 17:46:45 +0000 |
commit | e3c3e69bf40d1405d3a3f73c729994547d471e31 (patch) | |
tree | 9ec9775b8e660d0ec329d9b281e98f11cd6ef2af /net-print/mtink | |
parent | bump (diff) | |
download | historical-e3c3e69bf40d1405d3a3f73c729994547d471e31.tar.gz historical-e3c3e69bf40d1405d3a3f73c729994547d471e31.tar.bz2 historical-e3c3e69bf40d1405d3a3f73c729994547d471e31.zip |
bump
Diffstat (limited to 'net-print/mtink')
-rw-r--r-- | net-print/mtink/Manifest | 4 | ||||
-rw-r--r-- | net-print/mtink/files/digest-mtink-0.9.57 | 1 | ||||
-rw-r--r-- | net-print/mtink/mtink-0.9.57.ebuild | 54 |
3 files changed, 57 insertions, 2 deletions
diff --git a/net-print/mtink/Manifest b/net-print/mtink/Manifest index ec779eb50817..00452bb32919 100644 --- a/net-print/mtink/Manifest +++ b/net-print/mtink/Manifest @@ -1,5 +1,5 @@ -MD5 184aa1c81dd31be82cb2f7a83aabd7fd mtink-0.9.57.ebuild 1309 -MD5 a48e8cf251f8369f23df360cc8edbfe3 ChangeLog 463 +MD5 f81048ec4e733f01ec5f76c74d8a923d mtink-0.9.57.ebuild 1307 +MD5 5e614785153430885846ab5c6761cc1b ChangeLog 463 MD5 26b4b081d538c195dc39bcb2ec8e6f3a metadata.xml 161 MD5 432113140ae37a2e4cfe9263e807dc31 mtink-0.9.55.ebuild 1360 MD5 d634fcba2aac9dc7626141e6ff68e538 files/mtinkd.confd 511 diff --git a/net-print/mtink/files/digest-mtink-0.9.57 b/net-print/mtink/files/digest-mtink-0.9.57 new file mode 100644 index 000000000000..a7c57df452f7 --- /dev/null +++ b/net-print/mtink/files/digest-mtink-0.9.57 @@ -0,0 +1 @@ +MD5 8b643707102df13f2e6934bd20393c20 mtink-0.9.57.tar.gz 850061 diff --git a/net-print/mtink/mtink-0.9.57.ebuild b/net-print/mtink/mtink-0.9.57.ebuild new file mode 100644 index 000000000000..46c6f91db739 --- /dev/null +++ b/net-print/mtink/mtink-0.9.57.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/mtink/mtink-0.9.57.ebuild,v 1.1 2003/11/25 17:46:39 lanius Exp $ + +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="~x86" +IUSE="doc cups" + +DEPEND="virtual/motif + x11-base/xfree + cups? ( net-print/cups )" + +S="${WORKDIR}/${PN}" + +src_compile() { + cp -f Makefile.ORG Makefile + make || die "Compile problem" +} + +src_install() { + exeinto /usr/bin + doexe mtinkc mtink ttink detect/askPrinter + + exeinto /usr/sbin + doexe mtinkd + + exeinto /etc/init.d + newexe ${FILESDIR}/mtinkd.rc mtinkd + + insinto /etc/conf.d + newins ${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() { + einfo + einfo "mtink needs correct permissions to access printer device." + einfo "To do this you either need to run the following chmod command:" + einfo "chmod 666 /dev/<device>" + einfo "or set the suid bit on mtink, mtinkc and ttink in /usr/bin" + einfo +} |