blob: 397cd5e3120d1fac11fbbde3b5d63eccb7f945af (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmba/libmba-0.9.1-r1.ebuild,v 1.1 2010/06/20 18:52:58 xarthisius Exp $
EAPI="2"
inherit eutils multilib toolchain-funcs
DESCRIPTION="A library of generic C modules."
HOMEPAGE="http://www.ioplex.com/~miallen/libmba/"
SRC_URI="http://www.ioplex.com/~miallen/libmba/dl/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
pkg_setup(){
use static-libs && export STATIC="1"
}
src_prepare() {
epatch "${FILESDIR}"/${P}-qa.patch
tc-export CC
sed -i -e "s:gcc:${CC}:g" mktool.c || die
sed -i -e "s:\$(prefix)/lib:\$(prefix)/$(get_libdir):" Makefile || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README.txt docs/*.txt || die
dohtml -r docs/*.html docs/www/* docs/ref || die
insinto /usr/share/doc/${PF}/examples
doins examples/* || die
}
|