blob: 2301f7bc730c9e9e781b8f3be17a4ba38b492628 (
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
38
39
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/fmirror/fmirror-0.8.4.ebuild,v 1.1 2002/08/06 22:22:53 blizzy Exp $
DESCRIPTION="FTP mirror utility"
HOMEPAGE="http://freshmeat.net/projects/fmirror"
SRC_URI="ftp://ftp.guardian.no/pub/free/ftp/fmirror/${P}.tar.gz"
HOMEPAGE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
RDEPEND=""
DEPEND=""
S="${WORKDIR}/${P}"
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
}
|