diff options
author | Chris Reffett <creffett@gentoo.org> | 2014-03-07 03:28:28 +0000 |
---|---|---|
committer | Chris Reffett <creffett@gentoo.org> | 2014-03-07 03:28:28 +0000 |
commit | 9d64b7facd69136a262a5d101c8ccee650ffc888 (patch) | |
tree | 69b22c0d6a3cb3c414edddf199d36c3d1ea8e050 /dev-db | |
parent | Version bump. Update for changes to virtuoso.eclass (diff) | |
download | gentoo-2-9d64b7facd69136a262a5d101c8ccee650ffc888.tar.gz gentoo-2-9d64b7facd69136a262a5d101c8ccee650ffc888.tar.bz2 gentoo-2-9d64b7facd69136a262a5d101c8ccee650ffc888.zip |
Version bump. Update for changes to virtuoso.eclass
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 28DB029C)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/virtuoso-odbc/ChangeLog | 10 | ||||
-rw-r--r-- | dev-db/virtuoso-odbc/virtuoso-odbc-6.1.6.ebuild | 6 | ||||
-rw-r--r-- | dev-db/virtuoso-odbc/virtuoso-odbc-6.1.8.ebuild | 41 |
3 files changed, 52 insertions, 5 deletions
diff --git a/dev-db/virtuoso-odbc/ChangeLog b/dev-db/virtuoso-odbc/ChangeLog index 42ebca046b57..e4eff8733763 100644 --- a/dev-db/virtuoso-odbc/ChangeLog +++ b/dev-db/virtuoso-odbc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-db/virtuoso-odbc -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-odbc/ChangeLog,v 1.38 2013/04/26 00:48:51 creffett Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-odbc/ChangeLog,v 1.39 2014/03/07 03:28:28 creffett Exp $ + +*virtuoso-odbc-6.1.8 (07 Mar 2014) + + 07 Mar 2014; Chris Reffett <creffett@gentoo.org> +virtuoso-odbc-6.1.8.ebuild, + virtuoso-odbc-6.1.6.ebuild: + Version bump. Update for changes to virtuoso.eclass 26 Apr 2013; Chris Reffett <creffett@gentoo.org> +files/virtuoso-odbc-6.1.6-am_config_header.patch, virtuoso-odbc-6.1.6.ebuild: diff --git a/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.6.ebuild b/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.6.ebuild index 6fafffbaf6cc..d16aa283c515 100644 --- a/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.6.ebuild +++ b/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.6.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.6.ebuild,v 1.5 2013/04/26 00:48:51 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.6.ebuild,v 1.6 2014/03/07 03:28:28 creffett Exp $ EAPI=4 @@ -36,7 +36,7 @@ src_configure() { } src_install() { - virtuoso_src_install + default_src_install # Remove libtool files find "${ED}" -name '*.la' -delete diff --git a/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.8.ebuild b/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.8.ebuild new file mode 100644 index 000000000000..f4caf5ee1bb5 --- /dev/null +++ b/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.8.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.8.ebuild,v 1.1 2014/03/07 03:28:28 creffett Exp $ + +EAPI=5 + +inherit virtuoso + +DESCRIPTION="ODBC driver for OpenLink Virtuoso Open-Source Edition" + +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + >=dev-libs/openssl-0.9.7i:0 +" +DEPEND="${RDEPEND}" + +VOS_EXTRACT=" + libsrc/Dk + libsrc/Thread + libsrc/odbcsdk + libsrc/util + binsrc/driver +" + +src_configure() { + myconf+=" + --disable-static + --without-iodbc + " + + virtuoso_src_configure +} + +src_install() { + default_src_install + + # Remove libtool files + find "${ED}" -name '*.la' -delete +} |