blob: e937a3bfcb1e8093634a67642596908aefadad88 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcache/libmemcache-1.4.0_rc2.ebuild,v 1.2 2007/11/28 18:51:45 robbat2 Exp $
inherit toolchain-funcs autotools
MY_PV="${PV/_rc/.rc}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="C API for memcached"
HOMEPAGE="http://people.freebsd.org/~seanc/libmemcache/"
SRC_URI="http://people.freebsd.org/~seanc/libmemcache/${MY_P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~sparc-fbsd ~x86"
IUSE=""
RDEPEND="net-misc/memcached"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
rm -rf test/unit
sed -i -e '/DIR/s,unit,,g' test/Makefile.am
sed -i -e 's,test/unit/Makefile,,g' configure.ac
eautoreconf
}
src_compile() {
econf
emake
emake docs
}
src_install() {
emake install DESTDIR="${D}"
dodoc ChangeLog
}
|