blob: 5dbe0baf61d8ff029a934d359f1996ad18844e62 (
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
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/rpmdevtools/rpmdevtools-8.3-r1.ebuild,v 1.2 2013/06/04 21:40:33 bicatali Exp $
EAPI=4
DESCRIPTION="Collection of rpm packaging related utilities"
HOMEPAGE="https://fedorahosted.org/rpmdevtools/"
SRC_URI="https://fedorahosted.org/releases/r/p/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="emacs"
CDEPEND="
app-arch/rpm[python]
net-misc/curl
emacs? ( app-emacs/rpm-spec-mode )
dev-util/checkbashisms
"
DEPEND="
${CDEPEND}
dev-lang/perl
sys-apps/help2man
"
RDEPEND="${CDEPEND}"
src_install() {
default
rm "${ED}/usr/bin/checkbashisms" || die "Failed to remove checkbashisms script"
}
|