blob: a3b6a757c1c7926f78185aa4b159c0ba5784aa45 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/xsim/xsim-0.3.9.4-r5.ebuild,v 1.2 2008/11/05 20:06:31 maekke Exp $
EAPI="1"
inherit db-use eutils flag-o-matic kde-functions multilib
DESCRIPTION="A simple and fast GB and BIG5 Chinese XIM server"
HOMEPAGE="http://developer.berlios.de/projects/xsim/"
SRC_URI="mirror://berlios/xsim/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="debug kde"
DEPEND=">=sys-libs/db-4.1
>=sys-apps/sed-4
kde? ( kde-base/kdelibs:3.5 )"
src_unpack() {
local dbver
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-compile-fix.patch
epatch "${FILESDIR}"/${P}-gcc-3.4.patch
epatch "${FILESDIR}"/${P}-64bit.patch
# bug 227117
epatch "${FILESDIR}"/${P}-gcc-4.3.patch
append-flags -DPIC -fPIC -fno-strict-aliasing
dbver="$(db_findver sys-libs/db)"
sed -i -e "s/\(CFLAGS.*\)-O2/\1${CFLAGS}/" \
-e "s/libdb_cxx.so/libdb_cxx-${dbver}.so/" \
-e "s/bdblib=\"db_cxx\"/bdblib=\"db_cxx-${dbver}\"/" configure* || die
find . -name '*.in' | xargs sed -i \
-e "s#\(@prefix@/\)\(dat\|plugins\)#\1$(get_libdir)/xsim/\2#" \
-e "s#@prefix@/etc#/etc#" || die
}
src_compile() {
local myconf
if use kde; then
set-qtdir 3
set-kdedir 3
myconf="${myconf}
--with-kde3=${KDEDIR} \
--with-qt3=${QTDIR} \
--enable-status-kde3"
fi
myconf="${myconf} --with-bdb-includes=$(db_includedir)"
use debug && myconf="${myconf} --enable-debug"
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install() {
emake \
xsim_datp="${D}"/usr/$(get_libdir)/xsim/dat \
xsim_libp="${D}"usr/$(get_libdir)/xsim/plugins \
xsim_binp="${D}"/usr/bin \
xsim_etcp="${D}"/etc \
install-data install || die "install failed"
dodoc ChangeLog KNOWNBUG README* TODO
}
pkg_postinst() {
elog "XSIM needs write access to /usr/$(get_libdir)/xsim/dat/chardb, so if you"
elog "not running it as root, you need to do the following:"
elog
elog " cp -r /usr/$(get_libdir)/xsim/dat \${HOME}/.xsim"
elog " sed -i \"s#DICT_LOCAL.*#DICT_LOCAL \${HOME}/.xsim#\" > \${HOME}/.xsim/xsimrc"
echo
}
|