summaryrefslogtreecommitdiff
blob: 7b0acb3c55b10380c3310845184d1a1cb26300f8 (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
142
143
144
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/universalindentgui/universalindentgui-1.1.0-r2.ebuild,v 1.4 2010/05/24 22:03:39 wired Exp $

EAPI="2"

inherit eutils qt4-r2

DESCRIPTION="Cross platform compatible 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 html perl php python ruby xml"

LANGS="de fr ja ru uk zh_TW"

for L in $LANGS; do
	IUSE="$IUSE linguas_$L"
done

DEPEND="x11-libs/qt-core:4
	x11-libs/qt-gui:4
	x11-libs/qt-script:4
	x11-libs/qscintilla"
RDEPEND="${DEPEND}
	dev-util/indent
	dev-util/astyle
	dev-util/bcpp
	html? ( app-text/htmltidy
			perl? ( dev-lang/perl ) )
	perl? ( dev-perl/perltidy )
	php? ( dev-php/PEAR-PHP_Beautifier )
	python? ( dev-lang/python )
	ruby? ( dev-lang/ruby )
	xml? ( dev-util/xmlindent )
"

src_prepare() {
	# .pro fixes
	sed -i "s:lupdate-qt4:lupdate:" UniversalIndentGUI.pro ||
		die ".pro fix failed"
	sed -i "s:lrelease-qt4:lrelease:" UniversalIndentGUI.pro ||
		die ".pro fix failed"
	sed -i "s:ja_jp.qm:ja_JP.qm:" UniversalIndentGUI.pro ||
		die ".pro lang fix failed"
	if use debug; then
		sed -i "s:release,:debug,:g" UniversalIndentGUI.pro ||
			die ".pro debug fix failed"
	fi

	# patch .pro file according to our use flags
	# basic support
	UEXAMPLES="cpp sh"
	UINDENTERS="shellindent.awk"
	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"
	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

	IFILES=""
	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 "/^unix:indenters.files +=/d" UniversalIndentGUI.pro ||
		die ".pro patching failed"
	sed -i "s:indenters/uigui_\*\.ini:${IFILES}:" UniversalIndentGUI.pro ||
		die ".pro patching failed"

	for lang in ${LANGS}; do
		if [[ ! "${LINGUAS}" =~ "${lang}" ]]; then
			[[ ${lang} == "ja" ]] && lang="ja_JP"
			sed -i "/_${lang}.ts/d" UniversalIndentGUI.pro || die "failed while disabling $lang"
			sed -i "/_${lang}.qm/d" UniversalIndentGUI.pro || die "failed while disabling $lang"
		fi
	done

	epatch "${FILESDIR}"/${P}-gcc45.patch
}

src_configure() {
	eqmake4 UniversalIndentGUI.pro || die "eqmake4 failed"
}

src_compile() {
	emake || die "emake failed"
}

src_install() {
	emake INSTALL_ROOT="${D}" install || die "emake install failed"
	dodoc *.txt || die "doc installation failed"
	doman doc/"${PN}".1.gz || die "man page installation failed"
	insinto /usr/share/doc/${PF}/examples
	for I in ${UEXAMPLES}; do
		doins indenters/example.${I}
	done

	doicon resources/universalIndentGUI.png

	make_desktop_entry universalindentgui UniversalIndentGUI universalIndentGUI \
		"Qt;Development" || die "menu installation failed"
}