diff options
author | 2012-11-14 23:29:23 +0000 | |
---|---|---|
committer | 2012-11-14 23:29:23 +0000 | |
commit | 9f0d5795f7596ed5756b4dc9b75f7f627057160b (patch) | |
tree | 769b5078ba6b3a2f3942485e18dda4b62f21f3c5 /app-misc/mvcase/mvcase-0.1.ebuild | |
parent | respect AR and RANLIB wrt #443152 (diff) | |
download | gentoo-2-9f0d5795f7596ed5756b4dc9b75f7f627057160b.tar.gz gentoo-2-9f0d5795f7596ed5756b4dc9b75f7f627057160b.tar.bz2 gentoo-2-9f0d5795f7596ed5756b4dc9b75f7f627057160b.zip |
respect flags, CC and stuff wrt #443164
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'app-misc/mvcase/mvcase-0.1.ebuild')
-rw-r--r-- | app-misc/mvcase/mvcase-0.1.ebuild | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/app-misc/mvcase/mvcase-0.1.ebuild b/app-misc/mvcase/mvcase-0.1.ebuild index 779cec09872e..42034ceb7db2 100644 --- a/app-misc/mvcase/mvcase-0.1.ebuild +++ b/app-misc/mvcase/mvcase-0.1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mvcase/mvcase-0.1.ebuild,v 1.8 2008/03/29 13:50:25 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/mvcase/mvcase-0.1.ebuild,v 1.9 2012/11/14 23:29:23 hasufell Exp $ + +inherit eutils toolchain-funcs DESCRIPTION="A modified version of mv, used to convert filenames to lower/upper case" HOMEPAGE="http://www.ibiblio.org/pub/Linux/utils/file" @@ -13,7 +15,14 @@ IUSE="" DEPEND="dev-libs/shhopt" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-flags.patch +} + src_compile() { + tc-export CC emake || die } |