blob: 84416f2a1c8908eb3d7f826e3271f912d76f49b3 (
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
|
# Copyright 1999-2006 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.2 2006/01/19 18:52:57 sekretarz 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="virtual/libc
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
}
|