diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2004-12-20 20:45:52 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2004-12-20 20:45:52 +0000 |
commit | 0f9f17bd4d50ec75187aaa2ab5c0c40ceb5461e8 (patch) | |
tree | 2d704775cdc3aa51301b1cfaa0bde1a8a11e6e16 /net-print | |
parent | versino bump (Manifest recommit) (diff) | |
download | gentoo-2-0f9f17bd4d50ec75187aaa2ab5c0c40ceb5461e8.tar.gz gentoo-2-0f9f17bd4d50ec75187aaa2ab5c0c40ceb5461e8.tar.bz2 gentoo-2-0f9f17bd4d50ec75187aaa2ab5c0c40ceb5461e8.zip |
fix broken output, bug #44906
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/cups-pdf/ChangeLog | 7 | ||||
-rw-r--r-- | net-print/cups-pdf/cups-pdf-1.6.4.ebuild | 7 |
2 files changed, 9 insertions, 5 deletions
diff --git a/net-print/cups-pdf/ChangeLog b/net-print/cups-pdf/ChangeLog index d7222529fb83..46b81f20bb68 100644 --- a/net-print/cups-pdf/ChangeLog +++ b/net-print/cups-pdf/ChangeLog @@ -1,10 +1,13 @@ # ChangeLog for net-print/cups-pdf # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/cups-pdf/ChangeLog,v 1.14 2004/10/26 17:32:36 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/cups-pdf/ChangeLog,v 1.15 2004/12/20 20:45:52 lanius Exp $ + + 20 Dec 2004; Heinrich Wendel <lanius@gentoo.org> cups-pdf-1.6.4.ebuild: + fix borken output, bug #44906 *cups-pdf-1.6.4 (26 Oct 2004) - 26 Oct 2004; <heino@gentoo.org> -cups-pdf-1.3.1.ebuild, + 26 Oct 2004; <lanius@gentoo.org> -cups-pdf-1.3.1.ebuild, cups-pdf-1.5.2.ebuild, +cups-pdf-1.6.4.ebuild: mark 1.5.2 stable because of security issues, bug #68999; bump to 1.6.4 diff --git a/net-print/cups-pdf/cups-pdf-1.6.4.ebuild b/net-print/cups-pdf/cups-pdf-1.6.4.ebuild index 2a1b463118b3..b2d8cee6314e 100644 --- a/net-print/cups-pdf/cups-pdf-1.6.4.ebuild +++ b/net-print/cups-pdf/cups-pdf-1.6.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/cups-pdf/cups-pdf-1.6.4.ebuild,v 1.2 2004/10/26 17:34:14 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/cups-pdf/cups-pdf-1.6.4.ebuild,v 1.3 2004/12/20 20:45:52 lanius Exp $ DESCRIPTION="Provides a virtual printer for CUPS to produce PDF files." HOMEPAGE="http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/" @@ -9,7 +9,7 @@ SRC_URI="http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~amd64 ~sparc ~ppc" +KEYWORDS="x86 ~amd64 ~sparc ~ppc" IUSE="" DEPEND="net-print/cups @@ -17,7 +17,8 @@ DEPEND="net-print/cups src_compile() { cd src - sed -i -e "s:CPLOGTYPE 7:CPLOGTYPE 2:" \ + sed -i -e "s:CPLOGTYPE 3:CPLOGTYPE 2:" \ + -e "s:CPSH \"-s /bin/sh\":CPSH \"\":" \ -e "s:nobody:lp:" cups-pdf.h gcc ${CFLAGS} -o cups-pdf cups-pdf.c || die "Compilation failed." } |