mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-01 11:18:09 -07:00
dev-java/netty-tcnative: New package, required by netty-handler
Package-Manager: portage-2.2.28
This commit is contained in:
1
dev-java/netty-tcnative/Manifest
Normal file
1
dev-java/netty-tcnative/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST netty-tcnative-1.1.33.Fork15.tar.gz 186153 SHA256 660b5729fd9b858ba5a1df70099190e080d5fb2b0ec122b260125b42cfb6fa36 SHA512 592c70a926473a4903b704be920aac1a4fd5a032a8d821a77800b6922b374cb28decf496a65ef62867c027dbac93f0e563e9bb4ecf6659bc70cc33663bb979f5 WHIRLPOOL 40ae659bd638362bc6ad67678f99fde907ec139b696c90577bf6d8136265a029adf568a2c48980f36e8a4f46ca9087bcd09ef59467245fc0c498bf9ca3bf2fe1
|
||||
11
dev-java/netty-tcnative/metadata.xml
Normal file
11
dev-java/netty-tcnative/metadata.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>java@gentoo.org</email>
|
||||
<name>Java</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">netty/netty-tcnative</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
69
dev-java/netty-tcnative/netty-tcnative-1.1.33.15.ebuild
Normal file
69
dev-java/netty-tcnative/netty-tcnative-1.1.33.15.ebuild
Normal file
@@ -0,0 +1,69 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
JAVA_PKG_IUSE="doc source"
|
||||
|
||||
inherit autotools versionator java-pkg-2 java-pkg-simple
|
||||
|
||||
MY_P="${PN}-$(replace_version_separator 3 .Fork)"
|
||||
|
||||
DESCRIPTION="Fork of Tomcat Native that incorporates various patches"
|
||||
HOMEPAGE="http://netty.io/wiki/forked-tomcat-native.html"
|
||||
SRC_URI="https://github.com/netty/netty-tcnative/archive/${MY_P}.tar.gz"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
CDEPEND="dev-libs/apr:1=
|
||||
dev-libs/openssl:0="
|
||||
|
||||
RDEPEND="${CDEPEND}
|
||||
>=virtual/jre-1.7"
|
||||
|
||||
DEPEND="${CDEPEND}
|
||||
>=virtual/jdk-1.7
|
||||
app-arch/unzip
|
||||
dev-java/maven-hawtjni-plugin:0"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MY_P}"
|
||||
JAVA_SRC_DIR="${S}/openssl-dynamic/src/main/java"
|
||||
NATIVE_DIR="${S}/openssl-dynamic/src/main/native-package"
|
||||
|
||||
java_prepare() {
|
||||
cd "${NATIVE_DIR}" || die
|
||||
ln -sn ../c src || die
|
||||
ln -sn . project-template || die
|
||||
|
||||
# Provides missing m4 files and Makefile.am template.
|
||||
unzip -n $(java-pkg_getjars --build-only maven-hawtjni-plugin) project-template/\* || die
|
||||
|
||||
sed -i \
|
||||
-e "s:@PROJECT_NAME@:${PN}:g" \
|
||||
-e "s:@PROJECT_NAME_UNDER_SCORE@:${PN//-/_}:g" \
|
||||
-e "s:@PROJECT_SOURCES@:$(echo src/*.c):g" \
|
||||
Makefile.am || die
|
||||
|
||||
# Avoid dummy version and tedious symlink.
|
||||
sed -i "s/-release @VERSION@/-avoid-version/g" configure.ac || die
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure(){
|
||||
cd "${NATIVE_DIR}" || die
|
||||
econf --with-apr=/usr/bin/apr-1-config --with-ssl=/usr
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
java-pkg-simple_src_compile
|
||||
emake -C "${NATIVE_DIR}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
java-pkg-simple_src_install
|
||||
java-pkg_doso "${NATIVE_DIR}"/.libs/lib${PN}.so
|
||||
dodoc README.md
|
||||
}
|
||||
Reference in New Issue
Block a user