blob: a1074918b4f236d49e69b062ff8169f47f1c9f09 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit eutils multilib toolchain-funcs
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"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 hppa ia64 ppc x86"
IUSE="static-libs"
RESTRICT="test"
RDEPEND="!dev-db/cdb"
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.diff
epatch "${FILESDIR}"/${P}-umask.diff
epatch "${FILESDIR}"/${P}-uclibc.diff
# fix multilib support
sed -i "/^libdir/s:/lib:/$(get_libdir):" Makefile
}
src_compile() {
local targets="shared"
use static-libs && targets+=" staticlib piclib"
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} ${LDFLAGS}" \
${targets}
}
src_install() {
local targets="install install-sharedlib"
use static-libs && targets+=" install-piclib"
emake \
prefix="/usr" \
mandir="/usr/share/man" \
DESTDIR="${D}" \
${targets}
dodoc ChangeLog NEWS
}
|