blob: 4f5812f80fd615bfeef42905a84b246ab7e8e3f8 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsup/cvsup-16.1e.ebuild,v 1.4 2002/08/16 04:04:41 murphy Exp $
S=${WORKDIR}
DESCRIPTION="a faster alternative to cvs. binary version"
SRC_URI="http://people.freebsd.org/~jdp/s1g/debian/${P}-LINUXLIBC6-gui.tar.gz"
HOMEPAGE="http://people.freebsd.org/~jdp/s1g/"
SLOT="0"
LICENSE="BSD"
KEYWORDS="x86 sparc sparc64"
src_install() {
cd ${S}
exeinto /opt/cvsup
doexe cvsup*
dodoc License
insinto /etc/env.d
doins $FILESDIR/99cvsup
}
|