You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-portage/mirrorselect/mirrorselect-2.1.0-r1.ebuild

51 lines
1.0 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/mirrorselect/mirrorselect-2.1.0-r1.ebuild,v 1.10 2012/05/21 04:49:48 darkside Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
PYTHON_DEPEND=2
PYTHON_USE_WITH="xml"
inherit eutils python
DESCRIPTION="Tool to help select distfiles mirrors for Gentoo"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE=""
RDEPEND="
dev-util/dialog
net-analyzer/netselect"
RESTRICT_PYTHON_ABIS="3*"
src_prepare() {
# bug 312753
epatch "${FILESDIR}/0001-Fix-rsync-mirror-selection.patch"
}
src_install() {
newsbin main.py ${PN} || die
installation() {
insinto $(python_get_sitedir)
doins -r ${PN}/
}
python_execute_function installation
doman ${PN}.8 || die
}
pkg_postinst() {
python_mod_optimize ${PN}
}
pkg_postrm() {
python_mod_cleanup ${PN}
}