blob: eff327322c8b1f1d2b7f64c3644ae7cada389a41 (
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
34
35
36
37
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/fmirror/fmirror-0.8.4.ebuild,v 1.9 2004/07/15 02:49:31 agriffis Exp $
DESCRIPTION="FTP mirror utility"
HOMEPAGE="http://freshmeat.net/projects/fmirror"
SRC_URI="ftp://ftp.guardian.no/pub/free/ftp/fmirror/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc "
IUSE=""
RDEPEND=""
DEPEND=""
src_compile() {
./configure \
--prefix=/usr \
--datadir=/etc/fmirror \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
|| die "configure problem"
emake || die "compile problem"
}
src_install() {
into /usr
dobin fmirror
dodoc COPYING ChangeLog README
newdoc configs/README README.sample
doman fmirror.1
cd configs
insinto /etc/fmirror/sample
doins sample.conf generic.conf redhat.conf
}
|