blob: 96c7bc745e0d471ba29a53cad7be1202af63e626 (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/spymemcached/spymemcached-2.9.1.ebuild,v 1.1 2013/11/30 10:21:21 ercpe Exp $
EAPI="5"
JAVA_PKG_IUSE="doc source"
inherit eutils java-pkg-2 java-pkg-simple
DESCRIPTION="A simple, asynchronous, single-threaded memcached client written in java"
HOMEPAGE="https://code.google.com/p/spymemcached/"
SRC_URI="https://${PN}.googlecode.com/files/${P}-sources.jar"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="spring"
CDEPEND="dev-java/log4j:0
dev-java/slf4j-api:0
spring? ( dev-java/spring-beans:3.2 )"
DEPEND=">=virtual/jdk-1.5
${CDEPEND}"
RDEPEND=">=virtual/jre-1.5
${CDEPEND}"
S="${WORKDIR}"
JAVA_GENTOO_CLASSPATH="log4j,slf4j-api"
java_prepare() {
if use spring; then
JAVA_GENTOO_CLASSPATH+=",spring-beans-3.2"
else
rm net/spy/memcached/spring/MemcachedClientFactoryBean.java || die
fi
}
|