blob: 025a1b40d6ca8c112315624a00d4521a682c661b (
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
51
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/mdbtools/mdbtools-0.4.ebuild,v 1.8 2004/07/02 02:29:22 agriffis Exp $
DESCRIPTION="A set of libraries and utilities for reading Microsoft Access database (MDB) files"
HOMEPAGE="http://sourceforge.net/projects/mdbtools/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="x86"
IUSE="odbc"
DEPEND=">=x11-libs/gtk+-1.2.0
>=sys-libs/libtermcap-compat-1.2.3
>=sys-devel/flex-2.5.0
>=sys-devel/bison-1.35
odbc? ( >=dev-db/unixODBC-2.0 )"
src_unpack() {
unpack ${A}
cd ${S} || die
patch -p1 <${FILESDIR}/mdbtools-0.4-termcap.diff || die
}
src_compile() {
local myconf
use odbc && myconf="${myconf} --with-unixodbc=/usr"
./configure \
--enable-sql \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--host=${CHOST} ${myconf} || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
# The install process installs pixmaps include the /usr/include
# directory. There are also some .h files that aren't included
# in any of the RPM files on the sourceforge site, so I'm
# thinking they are put here by mistake, like the pixmaps.
rm ${D}/usr/include/*.xpm ${D}/usr/include/gmdb.h \
${D}/usr/include/gtkhlist.h ${D}/usr/include/connectparams.h
dodoc COPYING* NEWS README* TODO AUTHORS HACKING ChangeLog
}
|