summaryrefslogtreecommitdiff
blob: 7a0ecf079ea38dc23ca4a61826108f7230e616e8 (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
26
27
28
29
30
31
32
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
}