blob: b4835c6a51ef1677527ceab62390598d5bf81dc3 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/csconv/csconv-11.4.1467.ebuild,v 1.5 2004/06/24 23:03:51 agriffis Exp $
inherit iiimf eutils
DESCRIPTION="A code conversion library for IIIMF"
LICENSE="IBM"
KEYWORDS="~x86"
S="${WORKDIR}/${IMSDK}/lib/CSConv"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gentoo.diff
}
src_compile() {
econf --prefix=/usr/lib/im \
--enable-optimize \
`use_enable debug` || die
# emake doesn't work
make || die
}
src_install() {
einstall prefix=${D}/usr/lib/im || die
cd ${WORKDIR}/${IMSDK}/doc/conv
doman *.[1-9]
dodoc ChangeLog INSTALL README*
}
|