blob: 7e77ca17655719e95df2fc2f3e836f7582f89e38 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/universalindentgui/universalindentgui-1.2.0.ebuild,v 1.1 2012/04/10 20:32:55 pesa Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
LANGS="de fr ja ru uk zh_TW"
inherit eutils python qt4-r2
DESCRIPTION="Cross platform GUI for several code formatters, beautifiers and indenters"
HOMEPAGE="http://universalindent.sourceforge.net/"
SRC_URI="mirror://sourceforge/universalindent/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug examples html perl php python ruby xml"
DEPEND="x11-libs/qt-core:4
x11-libs/qt-gui:4
x11-libs/qt-script:4
x11-libs/qscintilla
"
RDEPEND="${DEPEND}
dev-util/astyle
dev-util/bcpp
dev-util/indent
html? (
app-text/htmltidy
perl? ( dev-lang/perl )
)
perl? ( dev-perl/perltidy )
php? ( dev-php/PEAR-PHP_Beautifier )
ruby? ( dev-lang/ruby )
xml? ( dev-util/xmlindent )
"
DOCS="CHANGELOG.txt readme.html"
pkg_setup() {
use python && python_set_active_version 2
}
src_prepare() {
# correct translation binaries
sed -e "s/lupdate-qt4/lupdate/" \
-e "s/lrelease-qt4/lrelease/" \
-i UniversalIndentGUI.pro || die "sed pro translation binary"
if use debug; then
sed -i -e 's:release,:debug,:g' UniversalIndentGUI.pro || die
fi
# patch .pro file according to our use flags
# basic support
UEXAMPLES="cpp sh"
local UINDENTERS="shellindent.awk"
local UIGUIFILES="shellindent gnuindent bcpp astyle"
if use html; then
UEXAMPLES="${UEXAMPLES} html"
UIGUIFILES="${UIGUIFILES} tidy"
if use perl; then
UINDENTERS="${UINDENTERS} hindent"
UIGUIFILES="${UIGUIFILES} hindent"
fi
fi
if use perl; then
UEXAMPLES="${UEXAMPLES} pl"
UIGUIFILES="${UIGUIFILES} perltidy"
fi
if use php; then
UEXAMPLES="${UEXAMPLES} php"
UINDENTERS="${UINDENTERS} phpStylist.php"
UIGUIFILES="${UIGUIFILES} php_Beautifier phpStylist"
fi
if use python; then
UEXAMPLES="${UEXAMPLES} py"
UINDENTERS="${UINDENTERS} pindent.py"
UIGUIFILES="${UIGUIFILES} pindent"
python_convert_shebangs -r 2 .
fi
if use ruby; then
UEXAMPLES="${UEXAMPLES} rb"
UINDENTERS="${UINDENTERS} rbeautify.rb ruby_formatter.rb"
UIGUIFILES="${UIGUIFILES} rbeautify rubyformatter"
fi
if use xml; then
UEXAMPLES="${UEXAMPLES} xml"
UIGUIFILES="${UIGUIFILES} xmlindent"
fi
local IFILES= I=
for I in ${UINDENTERS}; do
IFILES="${IFILES} indenters/${I}"
chmod +x indenters/${I}
done
for I in ${UIGUIFILES}; do
IFILES="${IFILES} indenters/uigui_${I}.ini"
done
# apply fixes in .pro file
sed -i -e "/^unix:indenters.files +=/d" UniversalIndentGUI.pro ||
die ".pro patching failed"
sed -i -e "s:indenters/uigui_\*\.ini:${IFILES}:" UniversalIndentGUI.pro ||
die ".pro patching failed"
local lang
for lang in ${LANGS}; do
if ! use linguas_${lang}; then
sed -e "/_${lang}.ts/d" -e "/_${lang}.qm/d" \
-i UniversalIndentGUI.pro || die "failed while disabling ${lang}"
fi
done
qt4-r2_src_prepare
}
src_install() {
qt4-r2_src_install
doman doc/${PN}.1.gz
if use examples; then
insinto /usr/share/doc/${PF}/examples
local I
for I in ${UEXAMPLES}; do
doins indenters/example.${I}
done
fi
doicon resources/universalIndentGUI.png
make_desktop_entry ${PN} UniversalIndentGUI universalIndentGUI "Qt;Development"
}
|