summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Schlich <wschlich@gentoo.org>2008-02-05 23:53:52 +0000
committerWolfram Schlich <wschlich@gentoo.org>2008-02-05 23:53:52 +0000
commit8b071958204027fde1f83cf50956b3a2e3b6db65 (patch)
treeef77f719b7918f8841645f0d1e0c3da9335ec656 /net-print
parentstable x86, bug 209060 (diff)
downloadgentoo-2-8b071958204027fde1f83cf50956b3a2e3b6db65.tar.gz
gentoo-2-8b071958204027fde1f83cf50956b3a2e3b6db65.tar.bz2
gentoo-2-8b071958204027fde1f83cf50956b3a2e3b6db65.zip
removed old versions
(Portage version: 2.1.4)
Diffstat (limited to 'net-print')
-rw-r--r--net-print/splix/ChangeLog9
-rw-r--r--net-print/splix/files/splix-1.0.1_p1-fix-makefile.patch52
-rw-r--r--net-print/splix/files/splix-1.0.1_p1-fix-nocolor-segfault.patch12
-rw-r--r--net-print/splix/files/splix-1.0.1_p1-fix-ppd-parallel-build.patch15
-rw-r--r--net-print/splix/splix-0.0.2.ebuild36
-rw-r--r--net-print/splix/splix-1.0.1.ebuild38
-rw-r--r--net-print/splix/splix-1.0.1_p1.ebuild58
-rw-r--r--net-print/splix/splix-1.0.2.ebuild58
8 files changed, 8 insertions, 270 deletions
diff --git a/net-print/splix/ChangeLog b/net-print/splix/ChangeLog
index 59afc43addf6..3b87215294fe 100644
--- a/net-print/splix/ChangeLog
+++ b/net-print/splix/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for net-print/splix
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/splix/ChangeLog,v 1.10 2008/02/05 23:42:02 wschlich Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/splix/ChangeLog,v 1.11 2008/02/05 23:53:52 wschlich Exp $
+
+ 05 Feb 2008; Wolfram Schlich <wschlich@gentoo.org>
+ -files/splix-1.0.1_p1-fix-makefile.patch,
+ -files/splix-1.0.1_p1-fix-nocolor-segfault.patch,
+ -files/splix-1.0.1_p1-fix-ppd-parallel-build.patch, -splix-0.0.2.ebuild,
+ -splix-1.0.1.ebuild, -splix-1.0.1_p1.ebuild, -splix-1.0.2.ebuild:
+ removed old versions
*splix-1.1.1 (05 Feb 2008)
diff --git a/net-print/splix/files/splix-1.0.1_p1-fix-makefile.patch b/net-print/splix/files/splix-1.0.1_p1-fix-makefile.patch
deleted file mode 100644
index 8e659d9c7ccf..000000000000
--- a/net-print/splix/files/splix-1.0.1_p1-fix-makefile.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-diff -urN splix-1.0.1-1.orig/Makefile splix-1.0.1-1/Makefile
---- splix-1.0.1-1.orig/Makefile 2007-02-10 15:20:18.000000000 +0100
-+++ splix-1.0.1-1/Makefile 2007-10-14 16:18:05.000000000 +0200
-@@ -4,10 +4,10 @@
- # This project has been placed under the GPL Licence.
- #
-
--CXXFLAGS := -O2 `cups-config --cflags`
--LDFLAGS := `cups-config --ldflags`
--CUPSFILTER := `cups-config --serverbin`/filter
--CUPSPPD := `cups-config --datadir`/model
-+CXXFLAGS +=
-+LDFLAGS +=
-+CUPSFILTER := $(DESTDIR)`cups-config --serverbin`/filter
-+CUPSPPD := $(DESTDIR)`cups-config --datadir`/model
-
- # === DON'T CHANGE ANYTHING AFTER THIS MESSAGE ====
-
-diff -urN splix-1.0.1-1.orig/src/Makefile splix-1.0.1-1/src/Makefile
---- splix-1.0.1-1.orig/src/Makefile 2007-02-10 15:20:18.000000000 +0100
-+++ splix-1.0.1-1/src/Makefile 2007-10-14 17:18:31.000000000 +0200
-@@ -4,8 +4,8 @@
- # This project has been placed under the GPL Licence.
- #
-
--CXXFLAGS += -I../include -Wall -g -O0
--LDFLAGS += -lcups -lcupsimage
-+CXXFLAGS += -I../include -Wall
-+LDADD += -lcups -lcupsimage
-
- OBJECTS := spl2.o printer.o band.o compress.o bandanalyser.o
- HEADERS := include/spl2.h include/document.h include/printer.h \
-@@ -15,16 +15,16 @@
-
- all: rastertospl2
- rastertospl2: $(OBJECTS) rastertospl2.o raster.o
-- $(CXX) $(LDFLAGS) -o $@ $^
-+ $(CXX) $(LDFLAGS) -o $@ $^ $(LDADD)
-
- pbmtospl2: $(OBJECTS) pbmtospl2.o pbmimage.o
-- $(CXX) $(LDFLAGS) -o $@ $^
-+ $(CXX) $(LDFLAGS) -o $@ $^ $(LDADD)
-
- %.o: %.cpp $(HEADERS)
- $(CXX) $(CXXFLAGS) -c $<
-
- install: rastertospl2
-- install -m 755 -s rastertospl2 ${CUPSFILTER}
-+ install -m 755 rastertospl2 ${CUPSFILTER}
-
- .PHONY: clean distclean
- clean:
diff --git a/net-print/splix/files/splix-1.0.1_p1-fix-nocolor-segfault.patch b/net-print/splix/files/splix-1.0.1_p1-fix-nocolor-segfault.patch
deleted file mode 100644
index a7dbd2fdb033..000000000000
--- a/net-print/splix/files/splix-1.0.1_p1-fix-nocolor-segfault.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- splix-1.0.1-1-orig/src/printer.cpp 2007-02-10 15:20:18.000000000 +0100
-+++ splix-1.0.1-1/src/printer.cpp 2007-03-05 17:02:42.000000000 +0100
-@@ -102,7 +102,8 @@ Printer::Printer(ppd_file_t *ppd)
- if (attr)
- _qpdlVersion = strtol(attr->value, (char **)NULL, 10);
- attr = ppdFindAttr(_ppd, "QPDL", "ColorPrinter");
-- _color = attr->value[0] == '1' ? true : false;
-+ if (attr)
-+ _color = attr->value[0] == '1' ? true : false;
-
- // Get the resolution
- if ((choice = ppdFindMarkedChoice(_ppd, "Resolution"))) {
diff --git a/net-print/splix/files/splix-1.0.1_p1-fix-ppd-parallel-build.patch b/net-print/splix/files/splix-1.0.1_p1-fix-ppd-parallel-build.patch
deleted file mode 100644
index 3b7ed93db176..000000000000
--- a/net-print/splix/files/splix-1.0.1_p1-fix-ppd-parallel-build.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- ppd/Makefile.orig 2007-10-14 16:40:59.000000000 +0200
-+++ ppd/Makefile 2007-10-14 16:52:30.000000000 +0200
-@@ -25,9 +25,10 @@
- ppdc -d ./ $<
-
- $(LANGDRIVERSEXT): $(SOURCE) $(patsubst %, $(PODIR)/%.$(POEXT), $(LANGUAGES))
-- ppdc -c ${PODIR}/$(patsubst $(MASTERDRIVER)%.$(DRIVERSEXT),%, $@).${POEXT} -l $(patsubst $(MASTERDRIVER)%.$(DRIVERSEXT),%, $@) -d ${PODIR} $<
-+ lang=$(patsubst $(MASTERDRIVER)%.$(DRIVERSEXT),%, $@); \
-+ ppdc -c ${PODIR}/$$lang.${POEXT} -l $$lang -d ${PODIR}/$$lang $<; \
- for filename in ${DRIVERS}; do \
-- mv ${PODIR}/`echo $$filename`.${DRIVERSEXT} `echo $$filename`$(patsubst $(MASTERDRIVER)%.$(DRIVERSEXT),%, $@).${DRIVERSEXT}; \
-+ mv ${PODIR}/$$lang/$$filename.${DRIVERSEXT} $$filename$$lang.${DRIVERSEXT}; \
- done
-
- .PHONY: update
diff --git a/net-print/splix/splix-0.0.2.ebuild b/net-print/splix/splix-0.0.2.ebuild
deleted file mode 100644
index 4a8ed0cc0284..000000000000
--- a/net-print/splix/splix-0.0.2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/splix/splix-0.0.2.ebuild,v 1.1 2006/12/14 21:29:13 wschlich Exp $
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A set of CUPS printer drivers for SPL (Samsung Printer Language) printers"
-HOMEPAGE="http://splix.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND="net-print/cups"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/fixMakefile.patch
-}
-
-src_compile() {
- emake CXX="$(tc-getCXX)" || die "emake failed"
-}
-
-src_install() {
- CUPSFILTERDIR="$(cups-config --serverbin)/filter"
- CUPSPPDDIR="$(cups-config --datadir)/model"
-
- dodir "${CUPSFILTERDIR}"
- dodir "${CUPSPPDDIR}"
- emake DESTDIR="${D}" install || die "emake install failed"
-}
diff --git a/net-print/splix/splix-1.0.1.ebuild b/net-print/splix/splix-1.0.1.ebuild
deleted file mode 100644
index 24043ad63df2..000000000000
--- a/net-print/splix/splix-1.0.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/splix/splix-1.0.1.ebuild,v 1.1 2007/02/04 16:54:22 wschlich Exp $
-
-inherit eutils toolchain-funcs
-
-MY_P=${PN}-${PV/_/-}
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="A set of CUPS printer drivers for SPL (Samsung Printer Language) printers"
-HOMEPAGE="http://splix.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="net-print/cups"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/fixMakefile.patch
-}
-
-src_compile() {
- emake CXX="$(tc-getCXX)" || die "emake failed"
-}
-
-src_install() {
- CUPSFILTERDIR="$(cups-config --serverbin)/filter"
- CUPSPPDDIR="$(cups-config --datadir)/model"
-
- dodir "${CUPSFILTERDIR}"
- dodir "${CUPSPPDDIR}"
- emake DESTDIR="${D}" install || die "emake install failed"
-}
diff --git a/net-print/splix/splix-1.0.1_p1.ebuild b/net-print/splix/splix-1.0.1_p1.ebuild
deleted file mode 100644
index 288334aae272..000000000000
--- a/net-print/splix/splix-1.0.1_p1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/splix/splix-1.0.1_p1.ebuild,v 1.2 2007/10/14 18:31:30 wschlich Exp $
-
-inherit eutils toolchain-funcs
-
-MY_P=${PN}-${PV/_p/-}
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="A set of CUPS printer drivers for SPL (Samsung Printer Language) printers"
-HOMEPAGE="http://splix.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="net-print/cups
- net-print/cupsddk"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/"${P}"-fix-makefile.patch
- epatch "${FILESDIR}"/${P}-fix-nocolor-segfault.patch
- epatch "${FILESDIR}"/${P}-fix-ppd-parallel-build.patch
-}
-
-src_compile() {
- emake CXX="$(tc-getCXX)" || die "emake failed"
-}
-
-src_install() {
- CUPSFILTERDIR="$(cups-config --serverbin)/filter"
- CUPSPPDDIR="$(cups-config --datadir)/model"
-
- dodir "${CUPSFILTERDIR}"
- dodir "${CUPSPPDDIR}"
- emake DESTDIR="${D}" install || die "emake install failed"
-}
-
-pkg_postinst() {
- ebeep 5
- ewarn ""
- 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)'"
- ewarn ""
-}
diff --git a/net-print/splix/splix-1.0.2.ebuild b/net-print/splix/splix-1.0.2.ebuild
deleted file mode 100644
index b6f1ae3a8b09..000000000000
--- a/net-print/splix/splix-1.0.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/splix/splix-1.0.2.ebuild,v 1.1 2007/10/27 12:07:43 wschlich Exp $
-
-inherit eutils toolchain-funcs
-
-MY_P=${PN}-${PV/_p/-}
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="A set of CUPS printer drivers for SPL (Samsung Printer Language) printers"
-HOMEPAGE="http://splix.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="net-print/cups
- net-print/cupsddk"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-1.0.1_p1-fix-makefile.patch
- epatch "${FILESDIR}"/${PN}-1.0.1_p1-fix-nocolor-segfault.patch
- epatch "${FILESDIR}"/${PN}-1.0.1_p1-fix-ppd-parallel-build.patch
-}
-
-src_compile() {
- emake CXX="$(tc-getCXX)" || die "emake failed"
-}
-
-src_install() {
- CUPSFILTERDIR="$(cups-config --serverbin)/filter"
- CUPSPPDDIR="$(cups-config --datadir)/model"
-
- dodir "${CUPSFILTERDIR}"
- dodir "${CUPSPPDDIR}"
- emake DESTDIR="${D}" install || die "emake install failed"
-}
-
-pkg_postinst() {
- ebeep 5
- ewarn ""
- 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)'"
- ewarn ""
-}