diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-08-14 10:10:21 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-08-14 10:10:21 +0000 |
commit | 34ffe38a0de55b59013d0ad70bc0bf127a8af181 (patch) | |
tree | 4983d03bd614a7711b0999bf980cc9edf2833fb4 /dev-util/cssc/cssc-1.0.1.ebuild | |
parent | Make sys-apps/which a dependency only on GNU userland. (diff) | |
download | gentoo-2-34ffe38a0de55b59013d0ad70bc0bf127a8af181.tar.gz gentoo-2-34ffe38a0de55b59013d0ad70bc0bf127a8af181.tar.bz2 gentoo-2-34ffe38a0de55b59013d0ad70bc0bf127a8af181.zip |
version bump
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-util/cssc/cssc-1.0.1.ebuild')
-rw-r--r-- | dev-util/cssc/cssc-1.0.1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-util/cssc/cssc-1.0.1.ebuild b/dev-util/cssc/cssc-1.0.1.ebuild new file mode 100644 index 000000000000..44579d3ccb49 --- /dev/null +++ b/dev-util/cssc/cssc-1.0.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cssc/cssc-1.0.1.ebuild,v 1.1 2005/08/14 10:10:21 dragonheart Exp $ + +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="~x86 ~amd64" +IUSE="" + +DEPEND="virtual/libc" + +src_compile() { + econf --enable-binary || die + emake all || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc README NEWS ChangeLog AUTHORS +} + |