diff options
author | 2003-04-24 12:29:28 +0000 | |
---|---|---|
committer | 2003-04-24 12:29:28 +0000 | |
commit | 37515c2ea00b3eafb5dee140a8753f7bb7f7342a (patch) | |
tree | de89142bddee7c80f569e3e4253309f6d11fd191 /dev-db | |
parent | New version which is supposed to fix things in knoda concerning the new kde (diff) | |
download | historical-37515c2ea00b3eafb5dee140a8753f7bb7f7342a.tar.gz historical-37515c2ea00b3eafb5dee140a8753f7bb7f7342a.tar.bz2 historical-37515c2ea00b3eafb5dee140a8753f7bb7f7342a.zip |
New version which is supposed to fix things in knoda concerning the new kde
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/hk_classes/Manifest | 4 | ||||
-rw-r--r-- | dev-db/hk_classes/files/digest-hk_classes-0.6_pre3 | 1 | ||||
-rw-r--r-- | dev-db/hk_classes/hk_classes-0.6_pre3.ebuild | 41 |
3 files changed, 44 insertions, 2 deletions
diff --git a/dev-db/hk_classes/Manifest b/dev-db/hk_classes/Manifest index 2a7aaf1355b6..d6628e19131b 100644 --- a/dev-db/hk_classes/Manifest +++ b/dev-db/hk_classes/Manifest @@ -1,5 +1,5 @@ MD5 cedde5d6f4c0c43cb7b4421db4480b02 hk_classes-0.5.6.ebuild 1369 -MD5 3907f30f0bae088586bb6e184b84c7c4 ChangeLog 390 -MD5 211bca1f3c344e4eb3f52661220e1976 hk_classes-0.6_pre3.ebuild 1376 +MD5 0c06a0dab823986bea1ed62a37a2f970 ChangeLog 730 +MD5 513028e57ef8e66d24f8c8a46b6271d7 hk_classes-0.6_pre3.ebuild 1379 MD5 c5cc0649329cd6cc89fa51050ff34840 files/digest-hk_classes-0.5.6 68 MD5 74b6d2436ba78e5ee3022c8c7f841d0f files/digest-hk_classes-0.6_pre3 72 diff --git a/dev-db/hk_classes/files/digest-hk_classes-0.6_pre3 b/dev-db/hk_classes/files/digest-hk_classes-0.6_pre3 new file mode 100644 index 000000000000..50e296964494 --- /dev/null +++ b/dev-db/hk_classes/files/digest-hk_classes-0.6_pre3 @@ -0,0 +1 @@ +MD5 8496427cc5c3bf08cd354882a85086f4 hk_classes-0.6-pre3a.tar.gz 401130 diff --git a/dev-db/hk_classes/hk_classes-0.6_pre3.ebuild b/dev-db/hk_classes/hk_classes-0.6_pre3.ebuild new file mode 100644 index 000000000000..a61c4fb4bd82 --- /dev/null +++ b/dev-db/hk_classes/hk_classes-0.6_pre3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hk_classes/hk_classes-0.6_pre3.ebuild,v 1.1 2003/04/24 12:29:21 pauldv Exp $ + +NEWP=${P/_pre3/-pre3a} +DESCRIPTION="GUI-independent C++ libraries for database applications" +HOMEPAGE="http://hk-classes.sourceforge.net/" +SRC_URI="http://hk-classes.sourceforge.net/${NEWP}.tar.gz" +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="mysql postgres odbc" + +# At least one of the following is required +DEPEND="|| ( mysql? ( >=dev-db/mysql-3.23.54a ) + postgres? ( >=dev-db/postgresql-7.3 ) + odbc? ( >=dev-db/unixODBC-2.0.6 ) )" + +S=${WORKDIR}/${NEWP} + +src_compile() { + local myconf + myconf="--host=${CHOST} --prefix=/usr/lib/hk_classes \ + --with-hk_classes-incdir=/usr/include/hk_classes \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man" + + use mysql && myconf="${myconf} --with-mysql-incdir=/usr/include/mysql \ + --with-mysql-libdir=/usr/lib/mysql" + use postgres && myconf="${myconf} --with-postgres-incdir=/usr/include/postgresql \ + --with-postgres-libdir=/usr/lib/postgresql" + use odbc && myconf="${myconf} --with-odbc-incdir=/usr/include \ + --with-odbc-libdir=/usr/lib" + + ./configure ${myconf} || die "./configure failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die +} |