summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Väth <martin@mvath.de>2013-08-07 22:41:21 +0200
committerMartin Väth <martin@mvath.de>2015-10-11 10:48:50 +0200
commitcd5ebbc78d15caf87edfe8e0f83eb27e800bffc7 (patch)
tree6d7bf2e5310a71b41c736c1a60bb314f20ef76f6 /app-shells/termcolors-mv
parentBump squash_dir (diff)
downloadmv-cd5ebbc78d15caf87edfe8e0f83eb27e800bffc7.tar.gz
mv-cd5ebbc78d15caf87edfe8e0f83eb27e800bffc7.tar.bz2
mv-cd5ebbc78d15caf87edfe8e0f83eb27e800bffc7.zip
Bump termcolors-mv. Fix zsh comment
Diffstat (limited to 'app-shells/termcolors-mv')
-rw-r--r--app-shells/termcolors-mv/ChangeLog5
-rw-r--r--app-shells/termcolors-mv/Manifest2
-rw-r--r--app-shells/termcolors-mv/metadata.xml1
-rw-r--r--app-shells/termcolors-mv/termcolors-mv-3.0.ebuild (renamed from app-shells/termcolors-mv/termcolors-mv-2.0.ebuild)15
4 files changed, 18 insertions, 5 deletions
diff --git a/app-shells/termcolors-mv/ChangeLog b/app-shells/termcolors-mv/ChangeLog
index a1233c55..591b7063 100644
--- a/app-shells/termcolors-mv/ChangeLog
+++ b/app-shells/termcolors-mv/ChangeLog
@@ -2,6 +2,11 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*termcolors-3.0 (07 Aug 2013)
+
+ 07 Aug 2013; Martin Väth <martin@mvath.de>:
+ Version bump, remove old ebuild.
+
*termcolors-2.0 (23 Mar 2013)
23 Mar 2013; Martin Väth <martin@mvath.de>:
diff --git a/app-shells/termcolors-mv/Manifest b/app-shells/termcolors-mv/Manifest
index 67e95f75..359eb98d 100644
--- a/app-shells/termcolors-mv/Manifest
+++ b/app-shells/termcolors-mv/Manifest
@@ -1 +1 @@
-DIST termcolors-mv-2.0.tar.gz 9253 SHA256 7905858f44af975ab84e2011bc5ff1170b7f48e4ec20e97f7f224d9b3323173b SHA512 c39648c38a49710fb64593da07c344ed09ff16689b896bfe822f9245600c8ce5a8b326ed2ba192a1868c358434306df70a9589fafc681110425694a4ff53f67b WHIRLPOOL 128d8f386c8e8f081d9a53bd970075ca79f41297bbd6fb44ee6a0697719b31be52f124f4298f12d069446d0413129df5952ed3e4870c01a6359e10141f031e5e
+DIST termcolors-mv-3.0.tar.gz 7720 SHA256 e796c7d33b7c52aed72b780f8344989cb25cc17e505a0f3d1a70c4104d79c842 SHA512 be32c3713346a494ebfddc1855d21c28333597593f7c6d4b6035ec708e1ec5944f21db1bc81703a075152877f940da9eac94ed07471f6ba8111231c0098a4b1a WHIRLPOOL d8c2d332ab3e49fda40c82789e17267ed309a3e2924beaa1c297a1e83c8616325e112afe28dc754b30dbf08e395b57835af2cddb89124aa65aad484ed6e4c68a
diff --git a/app-shells/termcolors-mv/metadata.xml b/app-shells/termcolors-mv/metadata.xml
index e72e7dfe..afa70177 100644
--- a/app-shells/termcolors-mv/metadata.xml
+++ b/app-shells/termcolors-mv/metadata.xml
@@ -14,6 +14,7 @@
<remote-id type="github">vaeth/termcolors-mv</remote-id>
</upstream>
<use>
+ <flag name="create">Install DIR_COLORS-create perl script</flag>
<flag name="perl">Install 256colors perl script</flag>
</use>
</pkgmetadata>
diff --git a/app-shells/termcolors-mv/termcolors-mv-2.0.ebuild b/app-shells/termcolors-mv/termcolors-mv-3.0.ebuild
index d8ceba91..73b99521 100644
--- a/app-shells/termcolors-mv/termcolors-mv-2.0.ebuild
+++ b/app-shells/termcolors-mv/termcolors-mv-3.0.ebuild
@@ -13,19 +13,26 @@ SRC_URI="http://github.com/vaeth/${PN}/tarball/release-${PV} -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="perl"
-REDEPEND="perl? ( dev-lang/perl )"
+IUSE="create +perl"
+DEPEND="dev-lang/perl"
+RDEPEND="create? ( dev-lang/perl )
+perl? ( dev-lang/perl )"
src_prepare() {
epatch_user
}
+src_compile() {
+ perl bin/DIR_COLORS-create
+}
+
src_install() {
dodoc README
dobin bin/dircolors-mv
+ use create && dobin bin/DIR_COLORS-create
use perl && dobin bin/256colors
- insinto /etc
- doins -r etc/*
+ insinto /etc/dir_colors
+ doins DIR_COLORS*
}
pkg_postinst() {