Overlay/app-portage/findcruftfiles/findcruftfiles-9999.ebuild

46 lines
902 B
Bash
Raw Normal View History

2012-05-20 13:43:57 +04:00
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils
if [[ ${PV} == "9999" ]] ; then
2018-03-28 19:04:39 +03:00
EGIT_REPO_URI=${EGIT_REPO_URI:-"https://git.backbone.ws/kolan/Portage-FindCruftFiles.git"}
2015-10-12 19:44:08 +03:00
inherit git-r3
2012-05-20 13:43:57 +04:00
KEYWORDS=""
else
2018-03-28 19:04:39 +03:00
SRC_URI="https://git.backbone.ws/kolan/portage-findcruftfiles/archive/v${PVR}.tar.gz -> portage-findcruftfiles-${PVR}.tar.gz"
2012-05-20 13:43:57 +04:00
KEYWORDS="-* ~x86 ~amd64"
fi
DESCRIPTION="Automated Gentoo upgrading"
2018-03-28 19:04:39 +03:00
HOMEPAGE="https://git.backbone.ws/kolan/Portage-FindCruftFiles"
2012-05-20 13:43:57 +04:00
SLOT="0"
LICENSE="GPL-3"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_prepare() {
if [[ ${PV} == "9999" ]] ; then
# Allow user patches to be applied without modifying the ebuild
epatch_user
fi
}
src_install() {
if [[ ${PV} == "9999" ]] ; then
emake install DESTDIR="${D}"
else
emake install DESTDIR="${D}" || die
fi
}