blob: 234bdc5f5f2d7b5d233602ca861875fd4652bd90 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-rime/ibus-rime-0.9.8.ebuild,v 1.1 2013/02/05 11:11:58 yngwin Exp $
EAPI=5
DESCRIPTION="Rime Input Method Engine for IBus Framework"
HOMEPAGE="http://code.google.com/p/rimeime/"
SRC_URI="http://rimeime.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
COMMON_DEPEND="app-i18n/ibus
app-i18n/librime
x11-libs/libnotify"
DEPEND="${COMMON_DEPEND}
dev-util/cmake"
RDEPEND="${COMMON_DEPEND}
app-i18n/rime-data"
S=${WORKDIR}/${PN}
src_prepare() {
sed -i -e "/^libexecdir/s:/lib:/libexec:" Makefile || die
sed -i -e "/exec/s:/usr/lib:/usr/libexec:" rime.xml || die
}
|