Version bumped. This closes bug #76751.
authorMamoru Komachi <usata@gentoo.org>
Thu, 20 Jan 2005 04:11:29 +0000 (04:11 +0000)
committerMamoru Komachi <usata@gentoo.org>
Thu, 20 Jan 2005 04:11:29 +0000 (04:11 +0000)
app-text/pspresent/ChangeLog
app-text/pspresent/Manifest
app-text/pspresent/files/digest-pspresent-1.2 [new file with mode: 0644]
app-text/pspresent/pspresent-1.2.ebuild [new file with mode: 0644]

index 8fe3dd29da9bea7a3141b36cb744d8a1e7cfb407..be229c3032ddac65a4d30b0976e31b5c258a9e31 100644 (file)
@@ -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.
index 60db28aa75ac6b91c296a0d7bd05e19174137aaa..2ae2fac88b768f52e6b966501ead3f523e66ddde 100644 (file)
@@ -1,4 +1,16 @@
-MD5 2d6d7007bf7c05410e091a9456167ad1 ChangeLog 864
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 c6abf2c5b8d0e43ba45efb0e9e0bd970 ChangeLog 1004
 MD5 dffd46174e78b327c834fc3e4b1cf848 metadata.xml 160
 MD5 1ea0923f2ec37bd72043c08b675f554b pspresent-1.1.ebuild 804
+MD5 128e4f2456ae34e32f20bfe2cd7a0d55 pspresent-1.2.ebuild 800
 MD5 e8d36b988969f7d4ff8e3a45e05ca0f3 files/digest-pspresent-1.1 64
+MD5 1ddede6fd39817c8ff4af2ff97721eb8 files/digest-pspresent-1.2 64
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.2.6 (GNU/Linux)
+
+iD8DBQFB7y2HVWNWqTUmv+0RAvhPAKCrTjgVzqTVzn7VHx/8IHnD9MCETgCdHvbR
+zExCUZxmBAYFENrGiC/TOV0=
+=yodX
+-----END PGP SIGNATURE-----
diff --git a/app-text/pspresent/files/digest-pspresent-1.2 b/app-text/pspresent/files/digest-pspresent-1.2
new file mode 100644 (file)
index 0000000..d52aa86
--- /dev/null
@@ -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 (file)
index 0000000..612a8d8
--- /dev/null
@@ -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
+}