blob: 978aa9a59ed6b50a11aa7af2b12da097b7a80b8a (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-util/cvsup/cvsup-16.1e.ebuild,v 1.1 2002/02/18 19:23:51 danarmak Exp $
S=${WORKDIR}/cvsup
DESCRIPTION="a faster alternative to cvs. binary version"
SRC_URI="http://people.freebsd.org/~jdp/s1g/debian/cvsup-16.1e-LINUXLIBC6-gui.tar.gz"
HOMEPAGE="http://people.freebsd.org/~jdp/s1g/"
src_unpack() {
cd ${WORKDIR}
mkdir cvsup
cd cvsup
unpack $A
}
src_install() {
cd $S
exeinto /opt/cvsup
doexe cvsup*
dodoc License
insinto /etc/env.d
doins $FILESDIR/99cvsup
}
|