summaryrefslogtreecommitdiff
blob: 0096ee48dd2a8c8f8ecabb50860f76342e478b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit distutils

DESCRIPTION="Libmemcached wrapper written as a Python extension"
HOMEPAGE="http://lericson.blogg.se/code/category/pylibmc.html"
SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"

RDEPEND=">=dev-libs/libmemcached-0.26"
DEPEND="${RDEPEND}
	dev-python/setuptools"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

src_install() {
	distutils_src_install

	insinto /usr/share/pylibmc
	doins benchmark.py || die "Install failed"
}