summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2015-12-12 14:30:11 +0000
committerPatrice Clement <monsieurp@gentoo.org>2015-12-12 18:25:54 +0000
commit65148350bcf4e1db0748f8546af988bc9ae6a6f2 (patch)
tree7ff3fd246ee6598b21d1b11a085cc01f58a1d4d7 /app-shells
parentsys-boot/grub: Add slot for ncurses dep (diff)
downloadgentoo-65148350bcf4e1db0748f8546af988bc9ae6a6f2.tar.gz
gentoo-65148350bcf4e1db0748f8546af988bc9ae6a6f2.tar.bz2
gentoo-65148350bcf4e1db0748f8546af988bc9ae6a6f2.zip
app-shells/hstr: Version bump.
Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/hstr/Manifest1
-rw-r--r--app-shells/hstr/hstr-1.19.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/app-shells/hstr/Manifest b/app-shells/hstr/Manifest
index b11e1145bef2..d43a4174f767 100644
--- a/app-shells/hstr/Manifest
+++ b/app-shells/hstr/Manifest
@@ -1,2 +1,3 @@
DIST hstr-1.17.tar.gz 37289 SHA256 9e4b6e74bb7852945e25727105c5339c49c9ce1218481845c8d0205514d85e70 SHA512 eb89496c8554eb29ebb30430aa01179f7265a8ec15b0b9452f7e3ac4867ae4349e6141e11f0af01a4d15ba06131c18ec9ab760c8e68100fa2b8f2a793b237f9b WHIRLPOOL 2b33f485525b2cb033a82b249976d7c670d8f02948e84e73f350b19bdc955e551014f14ad4cfc845144ff0e0d8c3690c50b4444a414c7909f0106242d13a9cc2
DIST hstr-1.18.tar.gz 43672 SHA256 85eb071938c2e7314e5fbd245a81c7b0cd93a8864bf9cba5b5041acb5052ba73 SHA512 e0684a694a514a341c30bfa7fc596f858658f3be9db6c490f628b4c48d1bf08acd8b4b03361ceb6aef65d42a5b01a1c0a8ce94698b5f7f5193ef030d7dc896c4 WHIRLPOOL 1bd00be28623ea8e05c1cec3d95451b7f92e6b17bfb5bd2853560955fc5ace9226edefdee820e9cee6c3542180f699b56371b9766a65a8efc669987dd5e961fb
+DIST hstr-1.19.tar.gz 43946 SHA256 1783fa175416e99cb540cbc47092b87dc2362dc2a2f988f59eb66b0d793e4136 SHA512 f3c6598f21f1b77fa33b4910e945ae398741a9e94ea0c496b03542b394523c0b0fe34e24d9778280847486859728e7dcb798b6e1776c9e5e5d54c3378f7b720c WHIRLPOOL 76508633d70292df71989bbab7f549066f6c48f8018c4d94d0d5508e966efd4beb4f2f59acafb3a84b60fb70fef5edf1050da8ed4d107d1d9d2a3cc882d08662
diff --git a/app-shells/hstr/hstr-1.19.ebuild b/app-shells/hstr/hstr-1.19.ebuild
new file mode 100644
index 000000000000..57a6535441f2
--- /dev/null
+++ b/app-shells/hstr/hstr-1.19.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools-utils
+
+DESCRIPTION="Shell history suggest box - easily view, navigate, search and manage your command history"
+HOMEPAGE="https://github.com/dvorka/hstr http://www.mindforger.com"
+SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="Apache-2.0"
+KEYWORDS="~amd64 ~x86 ~ppc ~ppc64 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="sys-libs/ncurses:0="
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+"
+
+DOCS=( CONFIGURATION.md README.md )
+
+src_prepare() {
+ sed \
+ -e 's:-O2::g' \
+ -i src/Makefile.am || die
+ autotools-utils_src_prepare
+}