blob: 0215ec85709d8db528a8abbf2ed4919f8be3136a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/dybase/dybase-0.19.ebuild,v 1.4 2005/01/01 17:31:08 eradicator Exp $
DESCRIPTION="DyBASE is very simple object oriented embedded database for languages with dynamic type checking."
HOMEPAGE="http://www.garret.ru/~knizhnik/dybase.html"
SRC_URI="http://www.garret.ru/~knizhnik/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND="sys-libs/glibc"
RDEPEND=""
S=${WORKDIR}/${PN}
src_compile() {
cd ${S}/src
make || die "make failed"
}
src_install() {
dolib.a ${S}/lib/*.a
dolib.so ${S}/lib/*.so
insinto /usr/include
doins ${S}/inc/*.h
dodir /usr/share/doc/${P}
cp -r ${S}/doc ${S}/php ${S}/python ${S}/rebol ${S}/ruby \
${D}/usr/share/doc/${P}/
}
|