33 lines
811 B
Bash
33 lines
811 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/emirror/emirror-2.2.0.0.4.ebuild,v 1.2 2012/02/16 19:05:59 phajdan.jr Exp $
|
|
|
|
inherit versionator
|
|
|
|
MY_PV=$(replace_version_separator 3 '-')
|
|
|
|
DESCRIPTION="ECLiPt FTP mirroring tool"
|
|
HOMEPAGE="http://sourceforge.net/projects/emirror/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc x86"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}"/${PN}-${MY_PV}
|
|
|
|
src_compile() {
|
|
econf || die "econf failed"
|
|
emake || die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake \
|
|
prefix="${D}"/usr \
|
|
mandir="${D}"/usr/share/man/man1 \
|
|
sysconfdir="${D}"/etc \
|
|
htmldir="${D}"/var/www/mirrors \
|
|
install || die "emake install failed"
|
|
dodoc doc/*
|
|
}
|