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/sys-apps/yum/yum-3.4.3_p20130218.ebuild

43 lines
1.1 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="sqlite"
MY_PV="a119004"
MY_P="${PN}-${MY_PV}"
inherit eutils multilib python-single-r1
DESCRIPTION="automatic updater and package installer/remover for rpm systems"
HOMEPAGE="http://yum.baseurl.org/"
SRC_URI="https://dev.gentoo.org/~creffett/distfiles/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="test"
RDEPEND="${PYTHON_DEPS}
app-arch/rpm[${PYTHON_USEDEP}]
dev-python/sqlitecachec[${PYTHON_USEDEP}]
dev-libs/libxml2[python,${PYTHON_USEDEP}]
dev-python/urlgrabber[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-util/intltool
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
S="${WORKDIR}/${MY_P}"
src_prepare() {
sed -i -e 's/make/$(MAKE)/' Makefile || die
sed -i -e "s:lib:$(get_libdir):g" rpmUtils/Makefile yum/Makefile || die
}
src_install() {
emake DESTDIR="${ED}" install
python_optimize "${D%/}$(python_get_sitedir)" "${ED%/}/usr/share/yum-cli"
rm -r "${ED%/}/etc/rc.d" || die
}