Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/moreutils: ChangeLog moreutils-0.55.ebuild
Date: Thu, 29 Jan 2015 06:40:36
Message-Id: 20150129064031.11E04108CC@oystercatcher.gentoo.org
1 radhermit 15/01/29 06:40:31
2
3 Modified: ChangeLog
4 Added: moreutils-0.55.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.69 sys-apps/moreutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/moreutils/ChangeLog?rev=1.69&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/moreutils/ChangeLog?rev=1.69&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/moreutils/ChangeLog?r1=1.68&r2=1.69
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/moreutils/ChangeLog,v
20 retrieving revision 1.68
21 retrieving revision 1.69
22 diff -u -r1.68 -r1.69
23 --- ChangeLog 11 Dec 2014 23:07:51 -0000 1.68
24 +++ ChangeLog 29 Jan 2015 06:40:31 -0000 1.69
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/moreutils
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/moreutils/ChangeLog,v 1.68 2014/12/11 23:07:51 radhermit Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/moreutils/ChangeLog,v 1.69 2015/01/29 06:40:31 radhermit Exp $
31 +
32 +*moreutils-0.55 (29 Jan 2015)
33 +
34 + 29 Jan 2015; Tim Harder <radhermit@g.o> +moreutils-0.55.ebuild:
35 + Version bump.
36
37 *moreutils-0.54 (11 Dec 2014)
38
39
40
41
42 1.1 sys-apps/moreutils/moreutils-0.55.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/moreutils/moreutils-0.55.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/moreutils/moreutils-0.55.ebuild?rev=1.1&content-type=text/plain
46
47 Index: moreutils-0.55.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/moreutils/moreutils-0.55.ebuild,v 1.1 2015/01/29 06:40:31 radhermit Exp $
52
53 EAPI=5
54 inherit toolchain-funcs
55
56 DESCRIPTION="a growing collection of the unix tools that nobody thought to write thirty years ago"
57 HOMEPAGE="http://joeyh.name/code/moreutils/"
58 SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux"
63 IUSE="+doc +perl"
64
65 RDEPEND="
66 perl? (
67 dev-lang/perl
68 dev-perl/IPC-Run
69 dev-perl/Time-Duration
70 dev-perl/TimeDate
71 )"
72 DEPEND="
73 doc? (
74 dev-lang/perl
75 >=app-text/docbook2X-0.8.8-r2
76 app-text/docbook-xml-dtd:4.4
77 )"
78
79 src_prepare() {
80 # don't build manpages
81 if ! use doc ; then
82 sed -i -e '/^all:/s/$(MANS)//' -e '/man1/d' Makefile || die
83 fi
84
85 # don't install perl scripts
86 if ! use perl ; then
87 sed -i -e '/PERLSCRIPTS/d' Makefile || die
88 fi
89 }
90
91 src_compile() {
92 tc-export CC
93 emake CFLAGS="${CFLAGS}" DOCBOOK2XMAN=docbook2man.pl PREFIX="${EPREFIX}/usr"
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" INSTALL_BIN=install install
98
99 # sys-process is more advanced than parallel from moreutils, rename it
100 if use doc; then
101 mv "${ED}"usr/share/man/man1/{,${PN}_}parallel.1 || die
102 fi
103 mv "${ED}"usr/bin/{,${PN}_}parallel || die
104 }