diff options
author | Jonathan Callen <abcd@gentoo.org> | 2011-04-10 03:15:29 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2011-04-10 03:15:29 +0000 |
commit | 670bf6af72b466f4c91b1df024010c128665a7fc (patch) | |
tree | c23496c3db796d8f9683454fe5abe9170b413b51 /app-text/c2ps | |
parent | Add prefix support, bump EAPI to 3, add prefix keywords (diff) | |
download | gentoo-2-670bf6af72b466f4c91b1df024010c128665a7fc.tar.gz gentoo-2-670bf6af72b466f4c91b1df024010c128665a7fc.tar.bz2 gentoo-2-670bf6af72b466f4c91b1df024010c128665a7fc.zip |
Add prefix support, bump EAPI to 3, add prefix keywords
(Portage version: 2.2.0_alpha29_p11/cvs/Linux i686)
Diffstat (limited to 'app-text/c2ps')
-rw-r--r-- | app-text/c2ps/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/c2ps/c2ps-4.0.ebuild | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/app-text/c2ps/ChangeLog b/app-text/c2ps/ChangeLog index da8989779b4d..3ee03e2d75cb 100644 --- a/app-text/c2ps/ChangeLog +++ b/app-text/c2ps/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/c2ps -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/c2ps/ChangeLog,v 1.16 2008/06/08 09:41:31 bluebird Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/c2ps/ChangeLog,v 1.17 2011/04/10 03:15:29 abcd Exp $ + + 10 Apr 2011; Jonathan Callen <abcd@gentoo.org> c2ps-4.0.ebuild: + Add prefix support, bump EAPI to 3, add prefix keywords 08 Jun 2008; Friedrich Oslage <bluebird@gentoo.org> c2ps-4.0.ebuild: stable on sparc, thanks to Tiago Cunha for testing in bug #225263 diff --git a/app-text/c2ps/c2ps-4.0.ebuild b/app-text/c2ps/c2ps-4.0.ebuild index 8ecb2ebef119..7dabf3a3387f 100644 --- a/app-text/c2ps/c2ps-4.0.ebuild +++ b/app-text/c2ps/c2ps-4.0.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/c2ps/c2ps-4.0.ebuild,v 1.16 2008/06/08 09:41:31 bluebird Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/c2ps/c2ps-4.0.ebuild,v 1.17 2011/04/10 03:15:29 abcd Exp $ +EAPI=3 inherit toolchain-funcs DESCRIPTION="Generates a beautified ps document from a source file (c/c++)" @@ -10,7 +11,7 @@ SRC_URI="http://www.cs.technion.ac.il/users/c2ps/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~mips ppc sparc x86" +KEYWORDS="amd64 ~mips ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" IUSE="" src_compile() { @@ -19,6 +20,6 @@ src_compile() { src_install() { dodir /usr/bin /usr/share/man/man1 - emake MAN="${D}"/usr/share/man/man1 PREFIX="${D}"/usr install || die + emake MAN="${ED}"/usr/share/man/man1 PREFIX="${ED}"/usr install || die dodoc README } |