blob: ae52100873072b432ca521abfd31a4a0e8f7530d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/pip/pip-1.2-r1.ebuild,v 1.4 2012/12/03 21:04:20 ago Exp $
EAPI=4
inherit eutils perl-app
DESCRIPTION="Wrapper around programs that don't support stdin/stdout"
HOMEPAGE="http://membled.com/work/apps/pip/"
SRC_URI="http://membled.com/work/apps/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
src_install() {
perl-module_src_install
mv "${ED}"/usr/bin/{pip,gpip} || die 'rename failed'
}
pkg_postinst() {
perl-module_pkg_postinst
ewarn "To avoid collisions with dev-python/pip executable file of this package was renamed to 'gpip'"
}
|