Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/xmlindent/
Date: Mon, 16 Oct 2017 07:45:28
Message-Id: 1508139917.4bda10a218c97bc6738508edc3564a2c8a8d0581.monsieurp@gentoo
1 commit: 4bda10a218c97bc6738508edc3564a2c8a8d0581
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 16 07:44:52 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 16 07:45:17 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bda10a2
7
8 dev-util/xmlindent: clean up old.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 dev-util/xmlindent/xmlindent-0.2.17-r1.ebuild | 34 ---------------------------
13 1 file changed, 34 deletions(-)
14
15 diff --git a/dev-util/xmlindent/xmlindent-0.2.17-r1.ebuild b/dev-util/xmlindent/xmlindent-0.2.17-r1.ebuild
16 deleted file mode 100644
17 index c0b6bcefc27..00000000000
18 --- a/dev-util/xmlindent/xmlindent-0.2.17-r1.ebuild
19 +++ /dev/null
20 @@ -1,34 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit toolchain-funcs
27 -
28 -DESCRIPTION="XML Indent is an XML stream reformatter written in ANSI C, analogous to GNU indent"
29 -HOMEPAGE="http://xmlindent.sourceforge.net/"
30 -SRC_URI="mirror://sourceforge/xmlindent/${P}.tar.gz"
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="amd64 x86"
34 -
35 -IUSE=""
36 -DEPEND="sys-devel/flex"
37 -RDEPEND=""
38 -
39 -src_prepare() {
40 - sed -i Makefile \
41 - -e 's|gcc|$(CC)|g' \
42 - -e 's|-g|$(CFLAGS) $(LDFLAGS) |g' \
43 - || die "sed failed"
44 -}
45 -
46 -src_compile() {
47 - tc-export CC
48 - emake || die "emake failed"
49 -}
50 -
51 -src_install() {
52 - dobin xmlindent || die "dobin failed"
53 - doman *.1
54 -}