diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-11-01 10:10:23 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-11-01 10:10:23 +0000 |
commit | 8a1c0cfc72f4ef33411443f47982bdf689423d07 (patch) | |
tree | 806c0e5be9b0a9d8bdd7a9bb6dad9fa56f2963fe /dev-db/myodbc/myodbc-5.1.5_p1144.ebuild | |
parent | Version bump. Remove old. Fixes bug #213183. (diff) | |
download | gentoo-2-8a1c0cfc72f4ef33411443f47982bdf689423d07.tar.gz gentoo-2-8a1c0cfc72f4ef33411443f47982bdf689423d07.tar.bz2 gentoo-2-8a1c0cfc72f4ef33411443f47982bdf689423d07.zip |
Include 5.1 version now, in a new SLOT.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-hardened-r4 x86_64)
Diffstat (limited to 'dev-db/myodbc/myodbc-5.1.5_p1144.ebuild')
-rw-r--r-- | dev-db/myodbc/myodbc-5.1.5_p1144.ebuild | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/dev-db/myodbc/myodbc-5.1.5_p1144.ebuild b/dev-db/myodbc/myodbc-5.1.5_p1144.ebuild new file mode 100644 index 000000000000..e5634475e2e1 --- /dev/null +++ b/dev-db/myodbc/myodbc-5.1.5_p1144.ebuild @@ -0,0 +1,112 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/myodbc/myodbc-5.1.5_p1144.ebuild,v 1.1 2008/11/01 10:10:23 robbat2 Exp $ + +inherit eutils versionator + +MAJOR="$(get_version_component_range 1-2 $PV)" +MY_PN="mysql-connector-odbc" +MY_P="${MY_PN}-${PV/_p/r}" +DESCRIPTION="ODBC driver for MySQL" +HOMEPAGE="http://www.mysql.com/products/myodbc/" +SRC_URI="mirror://mysql/Downloads/Connector-ODBC/${MAJOR}/${MY_P}.tar.gz" +RESTRICT="primaryuri" +LICENSE="GPL-2" +SLOT="${MAJOR}" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="debug doc static" +RDEPEND=">=virtual/mysql-4.0 + dev-db/unixODBC" +# perl is required for building docs +DEPEND="${RDEPEND} + doc? ( dev-lang/perl )" +S=${WORKDIR}/${MY_P} + +# Careful! +DRIVER_NAME="${PN}-${SLOT}" + +src_compile() { + local myconf="--enable-static" + use static \ + && myconf="${myconf} --disable-shared" \ + || myconf="${myconf} --enable-shared" + + myconf="${myconf} $(use_with doc docs) $(use_with debug)" + myconf="${myconf} --disable-gui" + #TODO: the configure test against qt 4 enter in an endless loop + #myconf="${myconf} $(use_enable qt gui)" + + econf \ + --libexecdir=/usr/sbin \ + --sysconfdir=/etc/myodbc \ + --localstatedir=/var/lib/myodbc \ + --with-mysql-libs=/usr/lib/mysql \ + --with-mysql-includes=/usr/include/mysql \ + --with-odbc-ini=/etc/unixODBC/odbc.ini \ + --with-unixODBC=/usr \ + --enable-myodbc3i \ + --enable-myodbc3m \ + --disable-test \ + --without-samples \ + ${myconf} || die "econf failed" + + emake || die "emake failed" +} + +src_install() { + into /usr + einstall \ + libexecdir="${D}"/usr/sbin \ + sysconfdir="${D}"/etc/myodbc \ + localstatedir="${D}"/var/lib/myodbc \ + pkgdatadir="${D}"/usr/share/doc/${PF} + dodoc INSTALL README + prepalldocs + dodir /usr/share/${PN}-${SLOT} + for i in odbc.ini odbcinst.ini; do + einfo "Building $i" + sed \ + -e "s,__PN__,${DRIVER_NAME},g" \ + -e "s,__PF__,${PF},g" \ + -e "s,libmyodbc3.so,libmyodbc${SLOT:0:1}.so,g" \ + >"${D}"/usr/share/${PN}-${SLOT}/${i} \ + <"${FILESDIR}"/${i}.m4 \ + || die "Failed to build $i" + done; +} + +pkg_config() { + [ "${ROOT}" != "/" ] && \ + die 'Sorry, non-standard ROOT setting is not supported :-(' + + local msg='MySQL ODBC driver' + local drivers=$(/usr/bin/odbcinst -q -d) + if echo $drivers | grep -vq "^\[${DRIVER_NAME}\]$" ; then + ebegin "Installing ${msg}" + /usr/bin/odbcinst -i -d -f /usr/share/${PN}-${SLOT}/odbcinst.ini + rc=$? + eend $rc + [ $rc -ne 0 ] && die + else + einfo "Skipping already installed ${msg}" + fi + + local sources=$(/usr/bin/odbcinst -q -s) + msg='sample MySQL ODBC DSN' + if echo $sources | grep -vq "^\[${DRIVER_NAME}-test\]$"; then + ebegin "Installing ${msg}" + /usr/bin/odbcinst -i -s -l -f /usr/share/${PN}-${SLOT}/odbc.ini + rc=$? + eend $rc + [ $rc -ne 0 ] && die + else + einfo "Skipping already installed ${msg}" + fi +} + +pkg_postinst() { + elog "If this is a new install, please run the following command" + elog "to configure the MySQL ODBC drivers and sources:" + elog "emerge --config =${CATEGORY}/${PF}" + elog "Please note that the driver name used to form the DSN now includes the SLOT." +} |