blob: 85efb003574c3044788dc23515317de576ac1ec5 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libchewing/libchewing-0.3.0-r1.ebuild,v 1.2 2009/09/23 17:21:28 patrick Exp $
inherit eutils multilib
IUSE=""
DESCRIPTION="Library for Chinese Phonetic input method"
HOMEPAGE="http://chewing.csie.net/"
SRC_URI="http://chewing.csie.net/download/libchewing/${P}.tar.gz
http://gentoo-china-overlay.googlecode.com/svn/distfiles/${P}-fc9-patches.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
DEPEND=""
src_unpack() {
unpack "${P}".tar.gz
#patches from federa core
epatch "${DISTDIR}/${P}"-fc9-patches.tar.bz2
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
pkg_postinst() {
if [[ -e "${ROOT}"/usr/$(get_libdir)/libchewing.so.1 ]] ; then
ewarn "You must re-compile all packages that are linked against"
ewarn "<libchewing-0.2.7 by using revdep-rebuild from gentoolkit:"
ewarn "# revdep-rebuild --library libchewing.so.1"
fi
if [[ -e "${ROOT}"/usr/$(get_libdir)/libchewing.so.2 ]] ; then
ewarn "You must re-compile all packages that are linked against"
ewarn "<libchewing-0.3.0 by using revdep-rebuild from gentoolkit:"
ewarn "# revdep-rebuild --library libchewing.so.2"
fi
}
|