diff options
author | Fabian Groffen <grobian@gentoo.org> | 2010-03-08 18:54:55 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2010-03-08 18:54:55 +0000 |
commit | e67fdda22ecfcbee4410290023936d0eb2177888 (patch) | |
tree | 9e618e0678a5e3eb0d2e16bf30c248cc871da2c3 /dev-vcs/cssc | |
parent | Don't check for obsolete png_check_sig function (because vice will silently s... (diff) | |
download | gentoo-2-e67fdda22ecfcbee4410290023936d0eb2177888.tar.gz gentoo-2-e67fdda22ecfcbee4410290023936d0eb2177888.tar.bz2 gentoo-2-e67fdda22ecfcbee4410290023936d0eb2177888.zip |
Restore cssc-1.0.1, it's the only version that compiles for *-macos (and seems to have an official release).
(Portage version: 2.2.00.15754-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'dev-vcs/cssc')
-rw-r--r-- | dev-vcs/cssc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-vcs/cssc/cssc-1.0.1.ebuild | 33 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-vcs/cssc/ChangeLog b/dev-vcs/cssc/ChangeLog index 347dbf1dbfa5..4812c8ebf517 100644 --- a/dev-vcs/cssc/ChangeLog +++ b/dev-vcs/cssc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-vcs/cssc # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/ChangeLog,v 1.2 2010/03/05 16:55:01 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/ChangeLog,v 1.3 2010/03/08 18:54:55 grobian Exp $ + + 08 Mar 2010; Fabian Groffen <grobian@gentoo.org> +cssc-1.0.1.ebuild: + Restore cssc-1.0.1, it's the only version that compiles for *-macos (and + seems to have an official release). 26 Feb 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> cssc-1.2.0.ebuild: x86 stable wrt bug #305659 diff --git a/dev-vcs/cssc/cssc-1.0.1.ebuild b/dev-vcs/cssc/cssc-1.0.1.ebuild new file mode 100644 index 000000000000..7a0ecf079ea3 --- /dev/null +++ b/dev-vcs/cssc/cssc-1.0.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/cssc-1.0.1.ebuild,v 1.3 2010/03/08 18:54:55 grobian Exp $ + +# leave this ebuild around please, it's the only one that compiles (and hence +# isn't masked) -- grobian + +EAPI="3" + +DESCRIPTION="CSSC is the GNU Project's replacement for SCCS" +SRC_URI="mirror://sourceforge/cssc/CSSC-${PV}.tar.gz" +HOMEPAGE="http://cssc.sourceforge.net/" +SLOT="0" +LICENSE="GPL-2 LGPL-2" +S=${WORKDIR}/CSSC-${PV} +KEYWORDS="~ppc-macos ~x86-macos" +IUSE="" +RESTRICT="test" + +DEPEND="" + +src_configure() { + econf --enable-binary || die +} + +src_compile() { + emake all || die +} + +src_install () { + make DESTDIR="${D}" install || die + dodoc README NEWS ChangeLog AUTHORS +} |