blob: 1eda5995a77795bdb7fe3091d1aabc1394987f7d (
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
|
# 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/cvs/cvs-1.11.ebuild,v 1.2 2000/10/23 11:27:13 achim Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Concurrent Versions System - source code revision control tools"
SRC_URI="ftp://ftp.cvshome.org/pub/${P}/${P}.tar.gz"
HOMEPAGE="http://www.cvshome.org/"
src_compile() {
try ./configure --prefix=/usr
try make
}
src_install() {
into /usr
try make prefix=${D}/usr install
dodoc BUGS COPYING* ChangeLog* DEVEL* FAQ HACKING
dodoc MINOR* NEWS PROJECTS README* TESTS TODO
ln -s /usr/lib/cvs/contrib ${D}/usr/doc/${P}/contrib
insinto /usr/share/emacs/site-lisp
doins cvs-format.el
}
|