summaryrefslogtreecommitdiff
blob: ffc3b9c9e1d6a6aba53ebe6e149646e775fec9a2 (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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/bk_client/bk_client-1.1.ebuild,v 1.3 2007/07/12 01:05:42 mr_bones_ Exp $

inherit eutils

DESCRIPTION="Stripped, read only bitkeeper scm"
HOMEPAGE="http://www.bitmover.com"
SRC_URI="http://www.bitmover.com/bk-client.shar"

LICENSE="NWL"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND=""
DEPEND=""

src_unpack() {
	/bin/sh ${DISTDIR}/${A} || die
}

src_compile() {
	cd ${S}
	emake || die "build failed"
}

src_install() {
	dobin sfio
	dobin sfioball
	dobin update

	dodoc demo.sh doc/*
}