summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2005-01-20 04:11:29 +0000
committerMamoru Komachi <usata@gentoo.org>2005-01-20 04:11:29 +0000
commite531d4fa23c4bad4aca0f171d897abc10b5b48c4 (patch)
treefc9086b3248a9fbb91001aa273bdb3f50cff7f9c
parentVersion bump. (diff)
downloadgentoo-2-e531d4fa23c4bad4aca0f171d897abc10b5b48c4.tar.gz
gentoo-2-e531d4fa23c4bad4aca0f171d897abc10b5b48c4.tar.bz2
gentoo-2-e531d4fa23c4bad4aca0f171d897abc10b5b48c4.zip
Version bumped. This closes bug #76751.
-rw-r--r--app-text/pspresent/ChangeLog7
-rw-r--r--app-text/pspresent/Manifest2
-rw-r--r--app-text/pspresent/files/digest-pspresent-1.21
-rw-r--r--app-text/pspresent/pspresent-1.2.ebuild36
4 files changed, 45 insertions, 1 deletions
diff --git a/app-text/pspresent/ChangeLog b/app-text/pspresent/ChangeLog
index 8fe3dd29da9b..be229c3032dd 100644
--- a/app-text/pspresent/ChangeLog
+++ b/app-text/pspresent/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/pspresent
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pspresent/ChangeLog,v 1.8 2005/01/01 16:31:11 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pspresent/ChangeLog,v 1.9 2005/01/20 04:11:27 usata Exp $
+
+*pspresent-1.2 (20 Jan 2005)
+
+ 20 Jan 2005; Mamoru KOMACHI <usata@gentoo.org> +pspresent-1.2.ebuild:
+ Version bumped. This closes bug #76751.
25 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> pspresent-1.1.ebuild:
Provide virtual/psviewer; bug #50423. Stable on x86.
diff --git a/app-text/pspresent/Manifest b/app-text/pspresent/Manifest
index 60db28aa75ac..4da738ef42eb 100644
--- a/app-text/pspresent/Manifest
+++ b/app-text/pspresent/Manifest
@@ -1,4 +1,6 @@
MD5 2d6d7007bf7c05410e091a9456167ad1 ChangeLog 864
MD5 dffd46174e78b327c834fc3e4b1cf848 metadata.xml 160
MD5 1ea0923f2ec37bd72043c08b675f554b pspresent-1.1.ebuild 804
+MD5 c25eb1c98dd9ffae4212779cd47a65bb pspresent-1.2.ebuild 805
MD5 e8d36b988969f7d4ff8e3a45e05ca0f3 files/digest-pspresent-1.1 64
+MD5 1ddede6fd39817c8ff4af2ff97721eb8 files/digest-pspresent-1.2 64
diff --git a/app-text/pspresent/files/digest-pspresent-1.2 b/app-text/pspresent/files/digest-pspresent-1.2
new file mode 100644
index 000000000000..d52aa8678137
--- /dev/null
+++ b/app-text/pspresent/files/digest-pspresent-1.2
@@ -0,0 +1 @@
+MD5 1ad4ccbdda78a795473990295f99414d pspresent-1.2.tar.gz 14346
diff --git a/app-text/pspresent/pspresent-1.2.ebuild b/app-text/pspresent/pspresent-1.2.ebuild
new file mode 100644
index 000000000000..612a8d8508c8
--- /dev/null
+++ b/app-text/pspresent/pspresent-1.2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/pspresent/pspresent-1.2.ebuild,v 1.1 2005/01/20 04:11:27 usata Exp $
+
+IUSE="xinerama"
+
+DESCRIPTION="A tool to display full-screen PostScript presentations."
+SRC_URI="http://www.cse.unsw.edu.au/~matthewc/pspresent/${P}.tar.gz"
+HOMEPAGE="http://www.cse.unsw.edu.au/~matthewc/pspresent/"
+
+RDEPEND="virtual/libc
+ virtual/x11
+ virtual/ghostscript"
+DEPEND="${RDEPEND}
+ >=sys-apps/sed-4"
+
+PROVIDE="virtual/psviewer"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+src_compile()
+{
+ if ! use xinerama ; then
+ sed -i -e "/^XINERAMA/s/^/#/g" Makefile
+ fi
+ make pspresent || die "make failed"
+}
+
+src_install()
+{
+ dobin pspresent
+ doman pspresent.1
+ dodoc COPYING
+}