blob: db6e3aaaba5429c0859ab39679b7e33beb0d1201 (
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
43
44
45
46
47
48
49
50
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77.ebuild,v 1.6 2010/04/11 08:18:25 hattya Exp $
EAPI="2"
inherit eutils multilib toolchain-funcs
IUSE=""
DESCRIPTION="TinyCDB is a very fast and simple package for creating and reading constant data bases"
HOMEPAGE="http://www.corpit.ru/mjt/tinycdb.html"
SRC_URI="http://www.corpit.ru/mjt/${PN}/${P/-/_}.tar.gz"
RESTRICT="test"
LICENSE="public-domain"
KEYWORDS="amd64 hppa ia64 ppc x86"
SLOT="0"
DEPEND="!dev-db/cdb"
src_prepare() {
# fix multilib support
sed -i "/^libdir/s:/lib:/$(get_libdir):" Makefile \
|| die "failed to patch Makefile"
}
src_compile() {
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} ${LDFLAGS}" \
staticlib \
sharedlib \
piclib \
cdb-shared \
|| die
}
src_install() {
mv -f cdb-shared cdb
einstall install-sharedlib install-piclib || die
dodoc NEWS
}
|