public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/libdbi-drivers: ChangeLog libdbi-drivers-0.8.1-r2.ebuild
@ 2007-11-26  0:31 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 5+ messages in thread
From: Robin H. Johnson (robbat2) @ 2007-11-26  0:31 UTC (permalink / raw
  To: gentoo-commits

robbat2     07/11/26 00:31:37

  Modified:             ChangeLog
  Added:                libdbi-drivers-0.8.1-r2.ebuild
  Log:
  Block USE=firebird when USE=bindist is in play, per bug #200284 for license conflicts.
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.25                 dev-db/libdbi-drivers/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	20 Jun 2007 07:39:57 -0000	1.24
+++ ChangeLog	26 Nov 2007 00:31:37 -0000	1.25
@@ -1,6 +1,13 @@
 # ChangeLog for dev-db/libdbi-drivers
 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.24 2007/06/20 07:39:57 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.25 2007/11/26 00:31:37 robbat2 Exp $
+
+*libdbi-drivers-0.8.1-r2 (26 Nov 2007)
+
+  26 Nov 2007; Robin H. Johnson <robbat2@gentoo.org>
+  +libdbi-drivers-0.8.1-r2.ebuild:
+  Block USE=firebird when USE=bindist is in play, per bug #200284 for license
+  conflicts.
 
   20 Jun 2007; Christian Faulhammer <opfer@gentoo.org>
   libdbi-drivers-0.8.1-r1.ebuild:



1.1                  dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.1&content-type=text/plain

Index: libdbi-drivers-0.8.1-r2.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.1 2007/11/26 00:31:37 robbat2 Exp $

inherit eutils

DESCRIPTION="The libdbi-drivers project maintains drivers for libdbi."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://libdbi-drivers.sourceforge.net/"
LICENSE="LGPL-2.1"
DEPEND=">=dev-db/libdbi-0.8.0
		mysql? ( virtual/mysql )
		postgres? ( dev-db/postgresql )
		sqlite? ( <dev-db/sqlite-3 )
		sqlite3? ( >=dev-db/sqlite-3 )
		!bindist? ( firebird? ( dev-db/firebird ) )"

IUSE="mysql postgres sqlite oci8 firebird sqlite3 bindist"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
SLOT=0

src_unpack() {
	unpack ${A}
	EPATCH_OPTS="-p1 -d${S}" epatch "${FILESDIR}"/${P}-oci8.diff
}

pkg_setup() {
	local drivers=""
	use mysql && drivers="${drivers} mysql"
	use postgres && drivers="${drivers} pgsql"
	use sqlite && drivers="${drivers} sqlite"
	use sqlite3 && drivers="${drivers} sqlite3"
	if use firebird; then
		if use bindist; then
			eerror "The Interbase Public License is incompatible with LGPL, see bug #200284."
			eerror "Disabling firebird in the build"
		else
			drivers="${drivers} firebird"
		fi
	fi
	if use oci8; then
		if [ -z "${ORACLE_HOME}" ]; then
			die "\$ORACLE_HOME is not set!"
		fi
		drivers="${drivers} oracle"
	fi
	# safety check
	if [ -z "${drivers// /}" ]; then
		die "No supported databases in your USE flags! (mysql, postgres, sqlite, sqlite3, oracle, firebird)"
	fi
}

src_compile() {
	local myconf=""
	# WARNING: the configure script does NOT work correctly
	# --without-$driver does NOT work
	# so do NOT use `use_with...`
	use mysql && myconf="${myconf} --with-mysql"
	use postgres && myconf="${myconf} --with-pgsql"
	use sqlite && myconf="${myconf} --with-sqlite"
	use sqlite3 && myconf="${myconf} --with-sqlite3"
	use !bindist && use firebird && myconf="${myconf} --with-firebird"
	if use oci8; then
		if [ -z "${ORACLE_HOME}" ]; then
			die "\$ORACLE_HOME is not set!"
		fi
		myconf="${myconf} --with-oracle-dir=${ORACLE_HOME} --with-oracle"
	fi

	econf ${myconf} || die "econf failed"
	emake || die "emake failed"
}

src_install () {
	emake install DESTDIR="${D}" || die "make install failed"
	dodoc AUTHORS ChangeLog NEWS README README.osx TODO
}



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/libdbi-drivers: ChangeLog libdbi-drivers-0.8.1-r2.ebuild
@ 2008-10-12 13:55 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 5+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-10-12 13:55 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/10/12 13:55:53

  Modified:             ChangeLog libdbi-drivers-0.8.1-r2.ebuild
  Log:
  Stable on ppc wrt bug 240974
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.30                 dev-db/libdbi-drivers/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	10 Oct 2008 00:32:18 -0000	1.29
+++ ChangeLog	12 Oct 2008 13:55:53 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/libdbi-drivers
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.29 2008/10/10 00:32:18 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.30 2008/10/12 13:55:53 nixnut Exp $
+
+  12 Oct 2008; nixnut <nixnut@gentoo.org> libdbi-drivers-0.8.1-r2.ebuild:
+  Stable on ppc wrt bug 240974
 
   10 Oct 2008; Robin H. Johnson <robbat2@gentoo.org>
   +files/libdbi-drivers-0.8.3-doc-build-fix.patch,



1.3                  dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?r1=1.2&r2=1.3

Index: libdbi-drivers-0.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libdbi-drivers-0.8.1-r2.ebuild	21 May 2008 15:54:57 -0000	1.2
+++ libdbi-drivers-0.8.1-r2.ebuild	12 Oct 2008 13:55:53 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.2 2008/05/21 15:54:57 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.3 2008/10/12 13:55:53 nixnut Exp $
 
 inherit eutils
 
@@ -16,7 +16,7 @@
 		!bindist? ( firebird? ( dev-db/firebird ) )"
 
 IUSE="mysql postgres sqlite oci8 firebird sqlite3 bindist"
-KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ppc ~sparc ~x86"
 SLOT=0
 
 src_unpack() {






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/libdbi-drivers: ChangeLog libdbi-drivers-0.8.1-r2.ebuild
@ 2008-10-16 18:34 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2008-10-16 18:34 UTC (permalink / raw
  To: gentoo-commits

maekke      08/10/16 18:34:47

  Modified:             ChangeLog libdbi-drivers-0.8.1-r2.ebuild
  Log:
  amd64/x86 stable, bug #240974
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27 i686)

Revision  Changes    Path
1.32                 dev-db/libdbi-drivers/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	14 Oct 2008 03:11:12 -0000	1.31
+++ ChangeLog	16 Oct 2008 18:34:47 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/libdbi-drivers
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.31 2008/10/14 03:11:12 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.32 2008/10/16 18:34:47 maekke Exp $
+
+  16 Oct 2008; Markus Meier <maekke@gentoo.org>
+  libdbi-drivers-0.8.1-r2.ebuild:
+  amd64/x86 stable, bug #240974
 
   14 Oct 2008; Robin H. Johnson <robbat2@gentoo.org>
   libdbi-drivers-0.8.1-r1.ebuild, libdbi-drivers-0.8.1-r2.ebuild,



1.5                  dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?r1=1.4&r2=1.5

Index: libdbi-drivers-0.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libdbi-drivers-0.8.1-r2.ebuild	14 Oct 2008 03:11:12 -0000	1.4
+++ libdbi-drivers-0.8.1-r2.ebuild	16 Oct 2008 18:34:47 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.4 2008/10/14 03:11:12 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.5 2008/10/16 18:34:47 maekke Exp $
 
 inherit eutils
 
@@ -16,7 +16,7 @@
 		!bindist? ( firebird? ( dev-db/firebird ) )"
 
 IUSE="mysql postgres sqlite oci8 firebird sqlite3 bindist"
-KEYWORDS="~amd64 ~hppa ppc ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ppc ~sparc x86"
 SLOT=0
 
 src_unpack() {






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/libdbi-drivers: ChangeLog libdbi-drivers-0.8.1-r2.ebuild
@ 2008-10-28  5:01 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2008-10-28  5:01 UTC (permalink / raw
  To: gentoo-commits

jer         08/10/28 05:01:11

  Modified:             ChangeLog libdbi-drivers-0.8.1-r2.ebuild
  Log:
  Stable for HPPA (bug #240974).
  (Portage version: 2.2_rc12/cvs/Linux 2.6.25-gentoo-r7-JeR i686)

Revision  Changes    Path
1.33                 dev-db/libdbi-drivers/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	16 Oct 2008 18:34:47 -0000	1.32
+++ ChangeLog	28 Oct 2008 05:01:11 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/libdbi-drivers
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.32 2008/10/16 18:34:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.33 2008/10/28 05:01:11 jer Exp $
+
+  28 Oct 2008; Jeroen Roovers <jer@gentoo.org>
+  libdbi-drivers-0.8.1-r2.ebuild:
+  Stable for HPPA (bug #240974).
 
   16 Oct 2008; Markus Meier <maekke@gentoo.org>
   libdbi-drivers-0.8.1-r2.ebuild:



1.6                  dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?r1=1.5&r2=1.6

Index: libdbi-drivers-0.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libdbi-drivers-0.8.1-r2.ebuild	16 Oct 2008 18:34:47 -0000	1.5
+++ libdbi-drivers-0.8.1-r2.ebuild	28 Oct 2008 05:01:11 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.5 2008/10/16 18:34:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.6 2008/10/28 05:01:11 jer Exp $
 
 inherit eutils
 
@@ -16,7 +16,7 @@
 		!bindist? ( firebird? ( dev-db/firebird ) )"
 
 IUSE="mysql postgres sqlite oci8 firebird sqlite3 bindist"
-KEYWORDS="amd64 ~hppa ppc ~sparc x86"
+KEYWORDS="amd64 hppa ppc ~sparc x86"
 SLOT=0
 
 src_unpack() {






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-db/libdbi-drivers: ChangeLog libdbi-drivers-0.8.1-r2.ebuild
@ 2008-11-03 16:57 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 5+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-11-03 16:57 UTC (permalink / raw
  To: gentoo-commits

fmccor      08/11/03 16:57:05

  Modified:             ChangeLog libdbi-drivers-0.8.1-r2.ebuild
  Log:
  Sparc stable, related to Bug #245413 and to Bug #244246.
  (Portage version: 2.2_rc13/cvs/Linux 2.6.22-gentoo-r9-ail-simulation-sensors x86_64)

Revision  Changes    Path
1.34                 dev-db/libdbi-drivers/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	28 Oct 2008 05:01:11 -0000	1.33
+++ ChangeLog	3 Nov 2008 16:57:05 -0000	1.34
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/libdbi-drivers
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.33 2008/10/28 05:01:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/ChangeLog,v 1.34 2008/11/03 16:57:05 fmccor Exp $
+
+  03 Nov 2008; Ferris McCormick <fmccor@gentoo.org>
+  libdbi-drivers-0.8.1-r2.ebuild:
+  Sparc stable, related to Bug #245413 and to Bug #244246.
 
   28 Oct 2008; Jeroen Roovers <jer@gentoo.org>
   libdbi-drivers-0.8.1-r2.ebuild:



1.7                  dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild?r1=1.6&r2=1.7

Index: libdbi-drivers-0.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libdbi-drivers-0.8.1-r2.ebuild	28 Oct 2008 05:01:11 -0000	1.6
+++ libdbi-drivers-0.8.1-r2.ebuild	3 Nov 2008 16:57:05 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.6 2008/10/28 05:01:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/libdbi-drivers/libdbi-drivers-0.8.1-r2.ebuild,v 1.7 2008/11/03 16:57:05 fmccor Exp $
 
 inherit eutils
 
@@ -16,7 +16,7 @@
 		!bindist? ( firebird? ( dev-db/firebird ) )"
 
 IUSE="mysql postgres sqlite oci8 firebird sqlite3 bindist"
-KEYWORDS="amd64 hppa ppc ~sparc x86"
+KEYWORDS="amd64 hppa ppc sparc x86"
 SLOT=0
 
 src_unpack() {






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-11-03 16:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-26  0:31 [gentoo-commits] gentoo-x86 commit in dev-db/libdbi-drivers: ChangeLog libdbi-drivers-0.8.1-r2.ebuild Robin H. Johnson (robbat2)
  -- strict thread matches above, loose matches on Subject: below --
2008-10-12 13:55 Gysbert Wassenaar (nixnut)
2008-10-16 18:34 Markus Meier (maekke)
2008-10-28  5:01 Jeroen Roovers (jer)
2008-11-03 16:57 Ferris McCormick (fmccor)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox