diff options
Diffstat (limited to 'dev-java/spymemcached/spymemcached-2.9.1.ebuild')
-rw-r--r-- | dev-java/spymemcached/spymemcached-2.9.1.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-java/spymemcached/spymemcached-2.9.1.ebuild b/dev-java/spymemcached/spymemcached-2.9.1.ebuild new file mode 100644 index 000000000000..5a9328d3a369 --- /dev/null +++ b/dev-java/spymemcached/spymemcached-2.9.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 +} |