Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/multitail/
Date: Sat, 31 Oct 2015 09:01:11
Message-Id: 1446282057.b1f45aa5ab0a8ebe2c14e407b66188b51a7e0eae.jlec@gentoo
1 commit: b1f45aa5ab0a8ebe2c14e407b66188b51a7e0eae
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 31 09:00:10 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 31 09:00:57 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f45aa5
7
8 app-text/multitail: Version Bump
9
10 Package-Manager: portage-2.2.23
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 app-text/multitail/Manifest | 1 +
14 app-text/multitail/multitail-6.4.2.ebuild | 67 +++++++++++++++++++++++++++++++
15 2 files changed, 68 insertions(+)
16
17 diff --git a/app-text/multitail/Manifest b/app-text/multitail/Manifest
18 index 72dc712..3a13454 100644
19 --- a/app-text/multitail/Manifest
20 +++ b/app-text/multitail/Manifest
21 @@ -1 +1,2 @@
22 DIST multitail-6.4.1.tgz 155717 SHA256 8a6baecf3537c791f70645f3613bfea0c91a22040f2531bfe03b6d0cdd112134 SHA512 14d4785df257aaac8b3c1a5de8aa48a0b6c3e7829867e1fbc8d458636ecafcf506e09b12581cf562e1f503218b1729e47e9197f541bede90dc0a4d5e916b1c8b WHIRLPOOL 467d9fd6d089aebe597475d07217baadcb280ea952ae731310365a55046009c808b16657485c037f54dd746e2103f318c3555de04d4e14f2ab2ef19bbc408543
23 +DIST multitail-6.4.2.tgz 155757 SHA256 af1d5458a78ad3b747c5eeb135b19bdca281ce414cefdc6ea0cff6d913caa1fd SHA512 668c453372ba1e4013aa5191c697bdcaad82c84732841c120a506bee063d2134941e93aed63f96e5aeeb6045829a13aba012f9514dbd9520ab4f1b9b75b42dbd WHIRLPOOL c74a85671f2772a6b5d8cc224481fc1793d851573e77e9b7cc4bc3e0569b4ba58ca63989f7f82e2e91dabc29363b87dd361305178b8c174fe2a7b250c86e731b
24
25 diff --git a/app-text/multitail/multitail-6.4.2.ebuild b/app-text/multitail/multitail-6.4.2.ebuild
26 new file mode 100644
27 index 0000000..372f054
28 --- /dev/null
29 +++ b/app-text/multitail/multitail-6.4.2.ebuild
30 @@ -0,0 +1,67 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +inherit eutils flag-o-matic toolchain-funcs
37 +
38 +DESCRIPTION="Tail with multiple windows"
39 +HOMEPAGE="http://www.vanheusden.com/multitail/"
40 +SRC_URI="http://www.vanheusden.com/multitail/${P}.tgz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
45 +IUSE="debug examples unicode"
46 +
47 +RDEPEND="
48 + sys-libs/ncurses:0=[unicode?]
49 +"
50 +DEPEND="
51 + ${RDEPEND}
52 + virtual/pkgconfig
53 +"
54 +RESTRICT="test" # bug #492270
55 +
56 +src_prepare() {
57 + epatch \
58 + "${FILESDIR}"/${PN}-6.4.1-gentoo.patch
59 +
60 + sed \
61 + -e "/^DESTDIR/s:=.*$:=${EROOT}:g" \
62 + -i Makefile || die
63 +
64 + sed \
65 + -e "s:/usr/bin/xclip:${EPREFIX}/usr/bin/xclip:g" \
66 + -i xclip.c ${PN}.conf || die
67 +
68 + tc-export CC PKG_CONFIG
69 +
70 + use debug && append-flags "-D_DEBUG"
71 +}
72 +
73 +src_compile() {
74 + emake UTF8_SUPPORT=$(usex unicode)
75 +}
76 +
77 +src_install () {
78 + dobin multitail
79 +
80 + insinto /etc
81 + doins multitail.conf
82 +
83 + DOCS=( readme.txt thanks.txt )
84 + HTML_DOCS=( manual.html )
85 + einstalldocs
86 +
87 + doman multitail.1
88 +
89 + if use examples; then
90 + docinto examples
91 + dodoc conversion-scripts/colors-example.{pl,sh} conversion-scripts/convert-{geoip,simple}.pl
92 + fi
93 +}
94 +
95 +pkg_postinst() {
96 + optfeature "send a buffer to the X clipboard" x11-misc/xclip
97 +}