summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2003-06-19 09:36:06 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2003-06-19 09:36:06 +0000
commit73df9707fc08baaf38c6adb4d7cfc3696ba2400a (patch)
tree6bc17a3f89f225abdb610bbc65fba7f4139eabfd /app-text/xpdf
parentnew ebuild (diff)
downloadgentoo-2-73df9707fc08baaf38c6adb4d7cfc3696ba2400a.tar.gz
gentoo-2-73df9707fc08baaf38c6adb4d7cfc3696ba2400a.tar.bz2
gentoo-2-73df9707fc08baaf38c6adb4d7cfc3696ba2400a.zip
Security update
Diffstat (limited to 'app-text/xpdf')
-rw-r--r--app-text/xpdf/ChangeLog7
-rw-r--r--app-text/xpdf/Manifest4
-rw-r--r--app-text/xpdf/files/digest-xpdf-2.02.11
-rw-r--r--app-text/xpdf/xpdf-2.02.1.ebuild50
4 files changed, 60 insertions, 2 deletions
diff --git a/app-text/xpdf/ChangeLog b/app-text/xpdf/ChangeLog
index 9b4e99a1672e..d5c21f60816b 100644
--- a/app-text/xpdf/ChangeLog
+++ b/app-text/xpdf/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/xpdf
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/xpdf/ChangeLog,v 1.19 2003/03/25 22:00:18 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/xpdf/ChangeLog,v 1.20 2003/06/19 09:36:06 aliz Exp $
+
+*xpdf-2.02.1 (19 Jun 2003)
+
+ 19 Jun 2003; Daniel Ahlberg <aliz@gentoo.org> :
+ Security update.
*xpdf-2.02 (25 Mar 2003)
diff --git a/app-text/xpdf/Manifest b/app-text/xpdf/Manifest
index da2a97580878..8f7322890d37 100644
--- a/app-text/xpdf/Manifest
+++ b/app-text/xpdf/Manifest
@@ -1,5 +1,7 @@
-MD5 2f3f472f9db2a111c2fdc490ad55db51 ChangeLog 2580
+MD5 c9ed5a5309fb216855b988abebf6fd62 ChangeLog 2678
MD5 8011f9370b13859ac314c62b76da5b0a xpdf-2.02.ebuild 1104
+MD5 3200dd3d159a6b892d40463fcb8146b8 xpdf-2.02.1.ebuild 1148
MD5 54aabb74693687ed93c536d192ee7527 files/FTFont-freetype2.1-fix.patch 522
MD5 e231c3f77b475fdbe1307694e55e8542 files/digest-xpdf-2.02 61
MD5 7c0787e730fecfb5b6ebc5a7a69cd64e files/xpdfrc 1092
+MD5 5b8ecf36053280853d55ea04143da297 files/digest-xpdf-2.02.1 64
diff --git a/app-text/xpdf/files/digest-xpdf-2.02.1 b/app-text/xpdf/files/digest-xpdf-2.02.1
new file mode 100644
index 000000000000..1e72fb400d32
--- /dev/null
+++ b/app-text/xpdf/files/digest-xpdf-2.02.1
@@ -0,0 +1 @@
+MD5 e2932bb0f844d8318c940350c2aa2eb6 xpdf-2.02pl1.tar.gz 476349
diff --git a/app-text/xpdf/xpdf-2.02.1.ebuild b/app-text/xpdf/xpdf-2.02.1.ebuild
new file mode 100644
index 000000000000..9aaaa08e3858
--- /dev/null
+++ b/app-text/xpdf/xpdf-2.02.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/xpdf/xpdf-2.02.1.ebuild,v 1.1 2003/06/19 09:36:06 aliz Exp $
+
+IUSE="motif"
+
+MY_PV=${PV/.1/pl1}
+
+S=${WORKDIR}/${PN}-${MY_PV}
+DESCRIPTION="An X Viewer for PDF Files"
+HOMEPAGE="http://www.foolabs.com/xpdf/xpdf.html"
+SRC_URI="ftp://ftp.foolabs.com/pub/xpdf/${PN}-${MY_PV}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm"
+
+DEPEND="motif? ( virtual/x11
+ virtual/motif )
+ >=media-libs/freetype-2.0.5
+ >=media-libs/t1lib-1.3
+ app-text/ghostscript"
+
+src_compile() {
+ econf \
+ --enable-freetype2 \
+ --with-freetype2-includes=/usr/include/freetype2 \
+ --with-gzip || die
+
+ make ${MAKEOPTS} || die
+}
+
+
+src_install() {
+ make DESTDIR=${D} install || die
+ prepallman
+ dodoc README ANNOUNCE CHANGES
+ insinto /etc
+ doins ${FILESDIR}/xpdfrc
+}
+
+pkg_postinst() {
+ einfo
+ einfo "HINT: To have even nicer results add these lines to your ~/.xpdfrc"
+ einfo
+ einfo " include /etc/xpdfrc"
+ einfo " t1libControl high"
+ einfo " freetypeControl high"
+ einfo
+}