blob: 11a8b20d31594fdc451bd013a7f15df4f4e67aaa (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libiiimcf/libiiimcf-11.4_p1467.ebuild,v 1.1 2004/09/13 19:52:51 usata Exp $
inherit iiimf eutils
DESCRIPTION="A library to implement generic C interface for IIIM Client"
KEYWORDS="x86"
IUSE=""
RDEPEND="dev-libs/eimil
dev-libs/libiiimp"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S="${WORKDIR}/${IMSDK}/lib/iiimcf"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "s:../EIMIL:/usr/lib:g" \
-e "s:../iiimp:/usr/lib:g" Makefile* || die "sed failed"
autoconf
}
|