diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-10-17 20:17:56 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-10-17 20:17:56 +0000 |
commit | b27f56fdd22392d42e11b122f36e2317dc742469 (patch) | |
tree | 779c8cfbf3a1c5562fecefddbbc16f9d1a6c443b /app-text | |
parent | Version bump. (diff) | |
download | gentoo-2-b27f56fdd22392d42e11b122f36e2317dc742469.tar.gz gentoo-2-b27f56fdd22392d42e11b122f36e2317dc742469.tar.bz2 gentoo-2-b27f56fdd22392d42e11b122f36e2317dc742469.zip |
version bump thanks to Didier Link <didier.link@wanadoo.fr> in bug 151690
(Portage version: 2.1.2_pre3-r3)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/gv/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/gv/files/digest-gv-3.6.2 | 6 | ||||
-rw-r--r-- | app-text/gv/gv-3.6.2.ebuild | 57 |
3 files changed, 69 insertions, 1 deletions
diff --git a/app-text/gv/ChangeLog b/app-text/gv/ChangeLog index 02b56f4064ce..09bf88244f63 100644 --- a/app-text/gv/ChangeLog +++ b/app-text/gv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/gv # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/gv/ChangeLog,v 1.52 2006/08/19 01:53:00 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gv/ChangeLog,v 1.53 2006/10/17 20:17:55 genstef Exp $ + +*gv-3.6.2 (17 Oct 2006) + + 17 Oct 2006; Stefan Schweizer <genstef@gentoo.org> +gv-3.6.2.ebuild: + version bump thanks to Didier Link <didier.link@wanadoo.fr> in bug 151690 *gv-3.6.1-r5 (19 Aug 2006) diff --git a/app-text/gv/files/digest-gv-3.6.2 b/app-text/gv/files/digest-gv-3.6.2 new file mode 100644 index 000000000000..046699f210d8 --- /dev/null +++ b/app-text/gv/files/digest-gv-3.6.2 @@ -0,0 +1,6 @@ +MD5 dcdb2205cf0c61394419e015c7548df1 gv-3.6.2.tar.gz 446040 +RMD160 6479102493e3ebf5b2602a577c02a8b573a73cab gv-3.6.2.tar.gz 446040 +SHA256 778e79832dd374238a916d8f202f405775de38422477bd6c60bb1aa7845c82f9 gv-3.6.2.tar.gz 446040 +MD5 b1472bdd2a701efc60f0eecf66ae492a gv_3.6.2-1.diff.gz 11949 +RMD160 37a0d45c06902b8c6e1defd55a6c3ccdbae522ba gv_3.6.2-1.diff.gz 11949 +SHA256 1fd90b694f7ef0b5d465a4849fa2c12de09b97b8766165b61a60653eada6ec9b gv_3.6.2-1.diff.gz 11949 diff --git a/app-text/gv/gv-3.6.2.ebuild b/app-text/gv/gv-3.6.2.ebuild new file mode 100644 index 000000000000..8bd38c413ad2 --- /dev/null +++ b/app-text/gv/gv-3.6.2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/gv/gv-3.6.2.ebuild,v 1.1 2006/10/17 20:17:55 genstef Exp $ + +inherit eutils + +DESCRIPTION="gv is used to view PostScript and PDF documents using Ghostscript" +HOMEPAGE="http://www.gnu.org/software/gv/" +SRC_URI="ftp://ftp.gnu.org/gnu/gv/${P}.tar.gz + mirror://debian/pool/main/g/gv/gv_3.6.2-1.diff.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc-macos ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="|| ( ( + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXmu + x11-libs/libXpm + x11-libs/libXt + ) virtual/x11 + ) + x11-libs/Xaw3d + virtual/ghostscript" + +DEPEND="${RDEPEND} + || ( + x11-libs/libXt + virtual/x11 + )" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/gv-3.6.1-setenv.patch + epatch "${FILESDIR}"/gv-3.6.1-a0.patch + epatch "${FILESDIR}"/gv-3.6.1-fixedmedia.patch + epatch "${FILESDIR}"/gv-update.patch + epatch "${WORKDIR}"/gv_3.6.2-1.diff + epatch ${P}/debian/patches/{*-*,*_*} + # Make font render nicely even with gs-8, bug 135354 + sed -i -e "s:-dGraphicsAlphaBits=2:\0 -dAlignToPixels=0:" \ + src/{gv_{class,user,system}.ad,Makefile.{am,in}} +} + +src_compile() { + econf --enable-scrollbar-code || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog INSTALL README TODO +} |