blob: 69b7fda3388c97b2e2221021ca3efd90d694211b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/bibletime/bibletime-1.6.5.ebuild,v 1.1 2008/01/05 18:03:47 beandog Exp $
inherit kde eutils versionator
DESCRIPTION="KDE Bible study application using the SWORD library."
HOMEPAGE="http://www.bibletime.info/"
SRC_URI="mirror://sourceforge/bibletime/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="=app-text/sword-1.5.10*
>=dev-cpp/clucene-0.9.16"
LANGS_PKG=${PN}-i18n-${PV}
LANGS="af bg cs da de en_GB es fi fr hu it ko nl nn_NO no pl pt_BR ro ru sk uk"
LANGS_DOC="bg cs de fi fr it ko nl pt_BR ru"
for X in ${LANGS}; do
IUSE="${IUSE} linguas_${X}"
SRC_URI="${SRC_URI} linguas_${X}? ( mirror://sourceforge/bibletime/${LANGS_PKG}.tar.bz2 )"
done
need-kde 3.4
pkg_setup() {
if ! built_with_use app-text/sword curl; then
echo
ewarn "The SWORD library may not have been compiled with curl support."
ewarn "If you wish to use BibleTime's ability to download modules"
ewarn "straight from the SWORD website, please make sure app-text/sword"
ewarn "was compiled with USE=\"curl\"."
ewarn "Press ctrl+c to abort the merge of BibleTime if you want to"
ewarn "recompile SWORD with curl support."
echo
ebeep 5
fi
}
src_compile() {
cd ${S}
# Those paths are missing a slash.
sed -i -e "s:\$(kde_htmldir):\$(kde_htmldir)/:g" ${KDE_S}/docs/handbook/unicode/Makefile.*
sed -i -e "s:\$(kde_htmldir):\$(kde_htmldir)/:g" ${KDE_S}/docs/handbook/html/Makefile.*
sed -i -e "s:\$(kde_htmldir):\$(kde_htmldir)/:g" ${KDE_S}/docs/howto/unicode/Makefile.*
kde_src_compile
local MAKE_PO MAKE_DOC TMP
local _S="${KDE_S}"
if [ -d "${WORKDIR}/${LANGS_PKG}" ]; then
KDE_S="${WORKDIR}/${LANGS_PKG}"
cd "${KDE_S}"
# Adapted from kde.eclass
if [[ -z ${LINGUAS} ]]; then
elog "You can add some of the translations of the interface and"
elog "documentation by setting the \${LINGUAS} variable to the"
elog "languages you want installed."
elog
elog "Enabling English interface and documentation only."
else
if [[ -n ${LANGS} ]]; then
MAKE_PO=$(echo $(echo "${LINGUAS} ${LANGS}" | tr ' ' '\n' | sort | uniq -d))
TMP=$(echo $(echo "${MAKE_PO/pt_BR/pt_br}" | sort | uniq))
TMP=$(echo $(echo "${TMP/uk/ua}" | sort | uniq))
TMP+=" "
MAKE_PO=${TMP// /.po }
elog "Enabling translations for: ${MAKE_PO}"
sed -i -e "s:^POFILES =.*:POFILES = ${MAKE_PO}:" "${KDE_S}/po/Makefile.am" \
|| die "sed for locale failed"
rm -f "${KDE_S}/configure"
fi
TMP=""
if [[ -n ${LANGS_DOC} ]]; then
MAKE_DOC=$(echo $(echo "${LINGUAS} ${LANGS_DOC}" | tr ' ' '\n' | sort | uniq -d))
TMP=$(echo $(echo "${MAKE_DOC/pt_BR/pt-br}" | sort | uniq))
TMP=$(echo $(echo "${TMP/uk/ua}" | sort | uniq))
MAKE_DOC=${TMP}
elog "Enabling documentation for: ${MAKE_DOC}"
sed -i -e "s:^SUBDIRS =.*:SUBDIRS = ${MAKE_DOC}:" \
"${KDE_S}/docs/Makefile.am" || die "sed for locale failed"
# Those paths are missing a slash.
for X in ${MAKE_DOC}; do
[[ -f ${KDE_S}/docs/${X}/handbook/unicode/Makefile.am ]] && \
sed -i -e "s:\$(kde_htmldir):\$(kde_htmldir)/:g" \
${KDE_S}/docs/${X}/handbook/unicode/Makefile.am || die "sed for handbook failed"
[[ -f ${KDE_S}/docs/${X}/handbook/unicode/Makefile.am ]] && \
sed -i -e "s:\$(kde_htmldir):\$(kde_htmldir)/:g" \
${KDE_S}/docs/${X}/howto/unicode/Makefile.am || die "sed for howto failed"
done
rm -f "${KDE_S}/configure"
fi
fi
kde_src_compile
fi
KDE_S="${_S}"
}
src_install() {
kde_src_install
local _S="${KDE_S}"
if [ -d "${WORKDIR}/${LANGS_PKG}" ]; then
KDE_S="${WORKDIR}/${LANGS_PKG}"
cd "${KDE_S}"
kde_src_install
fi
KDE_S="${_S}"
}
|