summaryrefslogtreecommitdiff
path: root/app-text/xmlformat/xmlformat-1.04.ebuild
blob: 6abdd5883fc8be12e8280f8eed167c70b50f47a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

USE_RUBY="ruby27 ruby30 ruby31 ruby32"
inherit edo ruby-single

DESCRIPTION="Reformat XML documents to your custom style"
SRC_URI="http://www.kitebird.com/software/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.kitebird.com/software/xmlformat/"

LICENSE="xmlformat"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc ruby"

DEPEND="
	dev-lang/perl
	ruby? ( ${RUBY_DEPS} )
"
RDEPEND="${DEPEND}"

src_test() {
	# Perl is always installed, so we may as well always test both.
	if use ruby; then
		nonfatal edo ./runtest all || die "runtest for ruby failed"
	fi

	nonfatal edo ./runtest -p all || die "runtest for perl failed"
}

src_install() {
	dobin xmlformat.pl

	if use ruby; then
		dobin xmlformat.rb
		dosym xmlformat.rb /usr/bin/xmlformat
	else
		dosym xmlformat.pl /usr/bin/xmlformat
	fi

	dodoc BUGS ChangeLog README TODO

	if use doc; then
		# APIs
		dodoc -r docs/*
	fi
}