blob: 9aed9b1b25c3409179453ab61482917bac8239ab (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmoe/libmoe-1.5.8-r1.ebuild,v 1.5 2009/09/23 17:23:01 patrick Exp $
inherit toolchain-funcs multilib
DESCRIPTION="multi octet character encoding handling library"
HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/libmoe/"
SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
DEPEND="dev-lang/perl"
src_compile() {
emake CF="${CFLAGS} -Wall -I. -fPIC" \
LF="${LDFLAGS} -shared -Wl,-soname,\${DEST}.so.\${VER}.\${RELEASE}" \
CC="$(tc-getCC)" || die
}
src_install() {
make DESTDIR=${D} \
PREFIX=/usr \
MAN=/usr/share/man \
LIBSODIR=/usr/$(get_libdir) \
install || die
dodoc ChangeLog
dohtml libmoe.shtml
}
|