summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2013-08-16 09:30:33 +0000
committerManuel Rüger <mrueg@gentoo.org>2013-08-16 09:30:33 +0000
commit1cb0fad82f026f1aa6ad482c5984cab38df3a680 (patch)
tree5cfd72d8ebf4b1201a4a5833aaab3d9f2f8eeaaf /net-print/splix
parentCleanup. (diff)
downloadgentoo-2-1cb0fad82f026f1aa6ad482c5984cab38df3a680.tar.gz
gentoo-2-1cb0fad82f026f1aa6ad482c5984cab38df3a680.tar.bz2
gentoo-2-1cb0fad82f026f1aa6ad482c5984cab38df3a680.zip
Cleanup.
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-print/splix')
-rw-r--r--net-print/splix/ChangeLog8
-rw-r--r--net-print/splix/splix-2.0.0_p20110219-r1.ebuild62
2 files changed, 5 insertions, 65 deletions
diff --git a/net-print/splix/ChangeLog b/net-print/splix/ChangeLog
index 5a521dbffb6d..d3eddb4673a2 100644
--- a/net-print/splix/ChangeLog
+++ b/net-print/splix/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-print/splix
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/splix/ChangeLog,v 1.27 2012/03/12 19:10:48 scarabeus Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-print/splix/ChangeLog,v 1.28 2013/08/16 09:30:33 mrueg Exp $
+
+ 16 Aug 2013; Manuel Rüger <mrueg@gentoo.org> -splix-2.0.0_p20110219-r1.ebuild:
+ Cleanup.
12 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
splix-2.0.0_p20111206.ebuild:
@@ -150,4 +153,3 @@
07 Dec 2006; jakobdettner <gentoo@dettner.de> +splix-0.0.2.ebuild,
+files/fixMakefile.patch, +metadata.xml:
New Ebuild for bug 157302 thanks.
-
diff --git a/net-print/splix/splix-2.0.0_p20110219-r1.ebuild b/net-print/splix/splix-2.0.0_p20110219-r1.ebuild
deleted file mode 100644
index 2485e0ad97d1..000000000000
--- a/net-print/splix/splix-2.0.0_p20110219-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/splix/splix-2.0.0_p20110219-r1.ebuild,v 1.4 2011/09/24 21:24:04 chainsaw Exp $
-
-EAPI=2
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A set of CUPS printer drivers for SPL (Samsung Printer Language) printers"
-HOMEPAGE="http://splix.sourceforge.net/"
-SRC_URI="http://dev.gentoo.org/~voyageur/distfiles/${P}.tar.bz2
- http://splix.ap2c.org/samsung_cms.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+jbig"
-
-DEPEND=">=app-text/ghostscript-gpl-9.02
- >=net-print/cups-1.4.0
- jbig? ( media-libs/jbigkit )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
- # Honor LDFLAGS
- sed -e "/[a-z]_LDFLAGS/s/:=.*/:= $\{LDFLAGS\}/" -i module.mk \
- || die "module.mk sed failed"
- # Correct link comand, do not strip on install
- sed -e "s/g++/$\{LINKER\}/" -e "/install/s/-s //" -i rules.mk \
- || die "rules.mk sed failed"
-}
-
-src_compile() {
- local options="MODE=optimized"
- use jbig || options="${options} DISABLE_JBIG=1"
- emake ${options} PSTORASTER=gstoraster CXX="$(tc-getCXX)" \
- OPTIM_CFLAGS="${CFLAGS}" OPTIM_CXXFLAGS="${CXXFLAGS}" \
- || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- gzip "${D}"/$(cups-config --datadir)/model/*/*.ppd || die "ppd gzip failed"
-
- insinto $(cups-config --datadir)/model/samsung
- doins -r "${WORKDIR}"/cms
-}
-
-pkg_postinst() {
- ewarn "You *MUST* make sure that the PPD files that CUPS is using"
- ewarn "for actually installed printers are updated if you upgraded"
- ewarn "from a previous version of splix!"
- ewarn "Otherwise you will be unable to print (your printer might"
- ewarn "spit out blank pages etc.)."
- ewarn "To do that, simply delete the corresponding PPD file in"
- ewarn "/etc/cups/ppd/, click on 'Modify Printer' belonging to the"
- ewarn "corresponding printer in the CUPS webinterface (usually"
- ewarn "reachable via http://localhost:631/) and choose the correct"
- ewarn "printer make and model, for example:"
- ewarn "'Samsung' -> 'Samsung ML-1610, 1.0 (en)'"
-}