summaryrefslogtreecommitdiff
path: root/dev-db/mysql-proxy/mysql-proxy-0.8.2-r1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-12-11 14:51:15 +0100
committerMichał Górny <mgorny@gentoo.org>2018-12-11 14:51:15 +0100
commit2098bddecf9ada7c5808b965936ffe250b1101ce (patch)
tree3d82e941f5f60dd2226905c15301f0a5137d6715 /dev-db/mysql-proxy/mysql-proxy-0.8.2-r1.ebuild
parentc60ca055eda2773b4a8eca8e125c163d22e8e3bb (diff)
downloadgentoo-2098bddecf9ada7c5808b965936ffe250b1101ce.tar.gz
gentoo-2098bddecf9ada7c5808b965936ffe250b1101ce.tar.bz2
gentoo-2098bddecf9ada7c5808b965936ffe250b1101ce.zip
dev-db/mysql-proxy: Remove last-rited pkg
Closes: https://bugs.gentoo.org/629676 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-db/mysql-proxy/mysql-proxy-0.8.2-r1.ebuild')
-rw-r--r--dev-db/mysql-proxy/mysql-proxy-0.8.2-r1.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-db/mysql-proxy/mysql-proxy-0.8.2-r1.ebuild b/dev-db/mysql-proxy/mysql-proxy-0.8.2-r1.ebuild
deleted file mode 100644
index 6a7abae6bab8..000000000000
--- a/dev-db/mysql-proxy/mysql-proxy-0.8.2-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils versionator
-
-MY_PV=$(get_version_component_range 1-2)
-DESCRIPTION="A Proxy for the MySQL Client/Server protocol"
-HOMEPAGE="http://dev.mysql.com/doc/mysql-proxy/en/"
-SRC_URI="https://launchpad.net/${PN}/${MY_PV}/${PV}/+download/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-RDEPEND=">=dev-libs/libevent-2.1
- >=dev-libs/glib-2.16
- >=dev-lang/lua-5.1:0"
-DEPEND="${RDEPEND}
- >=virtual/mysql-5.0
- virtual/pkgconfig"
-
-src_prepare() {
- sed -i \
- -e 's|_EVENT_VERSION|LIBEVENT_VERSION|g' \
- src/chassis-mainloop.c || die
-}
-
-src_configure() {
- econf \
- --includedir=/usr/include/${PN} \
- --with-mysql \
- --with-lua \
- || die "econf failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
- newconfd "${FILESDIR}"/${PN}.confd-0.8.0-r1 ${PN} || die
- dodoc ChangeLog NEWS README
- if use examples; then
- docinto examples
- dodoc examples/*.lua || die
- dodoc lib/*.lua || die
- fi
- # mysql-proxy will refuse to start unless the config file is at most 0660.
- insinto /etc/mysql
- insopts -m0660
- doins "${FILESDIR}"/${PN}.cnf || die
-}