22 lines
517 B
Bash
22 lines
517 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="2"
|
|
|
|
MY_PN="eg"
|
|
|
|
DESCRIPTION="Easy GIT is a wrapper for git, designed to make git easy to learn and use"
|
|
HOMEPAGE="https://www.gnome.org/~newren/eg/"
|
|
SRC_URI="https://www.gnome.org/~newren/${MY_PN}/download/${PV}/${MY_PN} -> ${PF}"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-vcs/git-${PV}
|
|
dev-lang/perl"
|
|
|
|
src_install() {
|
|
newbin "${DISTDIR}/${PF}" "${MY_PN}" || die
|
|
}
|