blob: 44579d3ccb499575369cf0412e32823bd399ceaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}
|