diff options
Diffstat (limited to 'net-print/foo2zjs/foo2zjs-20050925.ebuild')
-rw-r--r-- | net-print/foo2zjs/foo2zjs-20050925.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/net-print/foo2zjs/foo2zjs-20050925.ebuild b/net-print/foo2zjs/foo2zjs-20050925.ebuild new file mode 100644 index 000000000000..139934ccf424 --- /dev/null +++ b/net-print/foo2zjs/foo2zjs-20050925.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/foo2zjs/foo2zjs-20050925.ebuild,v 1.1 2005/09/27 12:37:14 genstef Exp $ + +inherit eutils flag-o-matic + +DESCRIPTION="Support for printing to ZjStream-based printers" +HOMEPAGE="http://foo2zjs.rkkda.com/" +SRC_URI="ftp://ftp.minolta-qms.com/pub/crc/out_going/win/m23dlicc.exe + ftp://ftp.minolta-qms.com/pub/crc/out_going/win2000/m22dlicc.exe + ftp://ftp.minolta-qms.com/pub/crc/out_going/windows/cpplxp.exe + http://dev.gentoo.org/~genstef/files/foo2zjs-20050319.tar.gz + http://dev.gentoo.org/~genstef/files/foo2zjs-hplj1020-20050426.diff.bz2" +RESTRICT="nomirror" +LICENSE="GPL-2" +SLOT="0" +IUSE="cups foomaticdb usb" +DEPEND="app-arch/unzip + dev-lang/perl" +RDEPEND="cups? ( net-print/cups ) + foomaticdb? ( net-print/foomatic ) + usb? ( || ( sys-fs/udev sys-apps/hotplug ) )" +KEYWORDS="~x86 ~amd64" +S=${WORKDIR}/${PN} + +src_unpack() { + unpack foo2zjs-20050319.tar.gz foo2zjs-hplj1020-20050426.diff.bz2 + + # link getweb files in ${S} to get unpacked + for i in m23dlicc.exe m22dlicc.exe cpplxp.exe + do + ln -s ${DISTDIR}/${i} ${S} + done + + cd ${S} + + epatch ${WORKDIR}/foo2zjs-hplj1020-20050426.diff + epatch ${FILESDIR}/foo2zjs-Makefile-20050925.diff + epatch ${FILESDIR}/foo2zjs-udevfwld-20050925.diff + + # Why are these present in the tarball? + rm arm2hpdl foo2oak +} + +src_compile() { + emake getweb || die "Failed building getweb script" + + # remove wget as we got the firmware with portage + sed -si "s/.*wget.*//" getweb + sed -si "s/error \"Couldn't dow.*//" getweb + # unpack files + ./getweb all + + emake || die "emake failed" +} + +src_install() { + use foomaticdb && dodir /usr/share/foomatic/db/source + + use cups && dodir /usr/share/cups/model + + make DESTDIR=${D} install \ + || die "make install failed" + + if use usb; then + if [ -x ${ROOT}/sbin/udevsend ]; then + make DESTDIR=${D} install-udev \ + || die "make install-udev failed" + else + make DESTDIR=${D} install-hotplug \ + || die "make install-hotplug failed" + fi + fi +} |