diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-08-06 22:22:53 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-08-06 22:22:53 +0000 |
commit | 6ab191d17f0889d50ceb385f5248152d80541adc (patch) | |
tree | b6aa44a59e9e00ab22aeffe437419dc7e960e4dc /net-misc/fmirror/fmirror-0.8.4.ebuild | |
parent | fix0rs (diff) | |
download | gentoo-2-6ab191d17f0889d50ceb385f5248152d80541adc.tar.gz gentoo-2-6ab191d17f0889d50ceb385f5248152d80541adc.tar.bz2 gentoo-2-6ab191d17f0889d50ceb385f5248152d80541adc.zip |
new net-misc/fmirror
Diffstat (limited to 'net-misc/fmirror/fmirror-0.8.4.ebuild')
-rw-r--r-- | net-misc/fmirror/fmirror-0.8.4.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-misc/fmirror/fmirror-0.8.4.ebuild b/net-misc/fmirror/fmirror-0.8.4.ebuild new file mode 100644 index 000000000000..2301f7bc730c --- /dev/null +++ b/net-misc/fmirror/fmirror-0.8.4.ebuild @@ -0,0 +1,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 +} |