summaryrefslogtreecommitdiff
path: root/net-proxy/nutcracker/nutcracker-0.2.4.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'net-proxy/nutcracker/nutcracker-0.2.4.ebuild')
-rw-r--r--net-proxy/nutcracker/nutcracker-0.2.4.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/net-proxy/nutcracker/nutcracker-0.2.4.ebuild b/net-proxy/nutcracker/nutcracker-0.2.4.ebuild
deleted file mode 100644
index fa6a1948951b..000000000000
--- a/net-proxy/nutcracker/nutcracker-0.2.4.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils
-
-DESCRIPTION="A fast, light-weight proxy for Memcached and Redis.
-(Twitter's Twemproxy)"
-HOMEPAGE="https://github.com/twitter/twemproxy"
-SRC_URI="https://twemproxy.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc"
-
-DEPEND=">=dev-libs/libyaml-0.1.4"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- # Lets use system libyaml
- epatch "${FILESDIR}/${P}-use-system-libyaml.patch"
- eautoreconf
-}
-
-src_configure() {
- econf $(use debug)
-}
-
-src_install() {
- default_src_install
-
- insinto /etc/nutcracker
- newins conf/nutcracker.yml nutcracker.yml.example
-
- newconfd "${FILESDIR}/nutcracker.confd" nutcracker
- newinitd "${FILESDIR}/nutcracker.initd" nutcracker
-
- if use doc; then
- dodoc -r notes
- fi
-}