Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mvcase/
Date: Sat, 21 Oct 2017 21:32:10
Message-Id: 1508621517.4a7512992387fc6cf8e009261776b75362754e89.monsieurp@gentoo
1 commit: 4a7512992387fc6cf8e009261776b75362754e89
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 21 21:21:43 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 21 21:31:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a751299
7
8 app-misc/mvcase: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-misc/mvcase/mvcase-0.1-r2.ebuild | 32 ++++++++++++++++++++++++++++++++
13 1 file changed, 32 insertions(+)
14
15 diff --git a/app-misc/mvcase/mvcase-0.1-r2.ebuild b/app-misc/mvcase/mvcase-0.1-r2.ebuild
16 new file mode 100644
17 index 00000000000..568fed8c4a0
18 --- /dev/null
19 +++ b/app-misc/mvcase/mvcase-0.1-r2.ebuild
20 @@ -0,0 +1,32 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit eutils toolchain-funcs
27 +
28 +DESCRIPTION="A modified version of mv, used to convert filenames to lower/upper case"
29 +HOMEPAGE="http://www.ibiblio.org/pub/Linux/utils/file"
30 +SRC_URI="http://www.ibiblio.org/pub/Linux/utils/file/${P}.tar.gz"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~ppc ~x86"
35 +
36 +DEPEND="dev-libs/shhopt"
37 +RDEPEND="${DEPEND}"
38 +
39 +PATCHES=(
40 + "${FILESDIR}/${P}-includes.patch"
41 + "${FILESDIR}/${P}-flags.patch"
42 +)
43 +
44 +src_compile() {
45 + emake CC=$(tc-getCC)
46 +}
47 +
48 +src_install() {
49 + dobin "${PN}"
50 + doman "${PN}.1"
51 + einstalldocs
52 +}