blob: 9bf0543d7d4f3ec074ff3d136642d6baa9268055 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/xbsql/xbsql-0.11.ebuild,v 1.1 2004/07/20 16:48:03 carlo Exp $
inherit base
DESCRIPTION="XBSQL: An SQL Wrapper for the XBase library"
HOMEPAGE="http://www.rekallrevealed.org/"
SRC_URI="http://www.rekallrevealed.org/packages/${P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE="doc"
DEPEND="sys-devel/automake
sys-devel/libtool
=dev-db/xbase-2.0.0
sys-libs/readline"
RDEPEND="=dev-db/xbase-2.0.0
sys-libs/readline"
src_install() {
base_src_install
dodoc AUTHORS Announce COPYING ChangeLog INSTALL README TODO
use doc && dohtml doc/*
}
|