diff options
author | 2005-01-20 04:11:29 +0000 | |
---|---|---|
committer | 2005-01-20 04:11:29 +0000 | |
commit | e6e2ec5822b80e8e03675bdd8cadbed4263567f5 (patch) | |
tree | 4d7c9701f96d05875e47586d8b96aa91e1df532d | |
parent | Version bump. (diff) | |
download | historical-e6e2ec5822b80e8e03675bdd8cadbed4263567f5.tar.gz historical-e6e2ec5822b80e8e03675bdd8cadbed4263567f5.tar.bz2 historical-e6e2ec5822b80e8e03675bdd8cadbed4263567f5.zip |
Version bumped. This closes bug #76751.
-rw-r--r-- | app-text/pspresent/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/pspresent/Manifest | 14 | ||||
-rw-r--r-- | app-text/pspresent/files/digest-pspresent-1.2 | 1 | ||||
-rw-r--r-- | app-text/pspresent/pspresent-1.2.ebuild | 36 |
4 files changed, 56 insertions, 2 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..2ae2fac88b76 100644 --- a/app-text/pspresent/Manifest +++ b/app-text/pspresent/Manifest @@ -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 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 +} |