From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 60B1B13888F for ; Tue, 13 Oct 2015 10:48:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C28FAE07DF; Tue, 13 Oct 2015 10:48:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45BABE07DB for ; Tue, 13 Oct 2015 10:48:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4445E3408DD for ; Tue, 13 Oct 2015 10:48:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C73FFF4 for ; Tue, 13 Oct 2015 10:48:31 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1444732873.6d93b2e2efe4034288ceb9f61f932bef44cb1af1.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-native/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/tomcat-native/tomcat-native-1.1.33-r1.ebuild X-VCS-Directories: dev-java/tomcat-native/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 6d93b2e2efe4034288ceb9f61f932bef44cb1af1 X-VCS-Branch: master Date: Tue, 13 Oct 2015 10:48:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e82e8da2-c703-4cfa-8070-7f04faf5ee4c X-Archives-Hash: df7f6794a36e5ccc0493043f134c351d commit: 6d93b2e2efe4034288ceb9f61f932bef44cb1af1 Author: Patrice Clement gentoo org> AuthorDate: Tue Oct 13 10:41:13 2015 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Oct 13 10:41:13 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d93b2e2 dev-java/tomcat-native: Add missing dies. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> dev-java/tomcat-native/tomcat-native-1.1.33-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-java/tomcat-native/tomcat-native-1.1.33-r1.ebuild b/dev-java/tomcat-native/tomcat-native-1.1.33-r1.ebuild index c6f89cd..dd46836 100644 --- a/dev-java/tomcat-native/tomcat-native-1.1.33-r1.ebuild +++ b/dev-java/tomcat-native/tomcat-native-1.1.33-r1.ebuild @@ -26,7 +26,7 @@ DEPEND=">=virtual/jdk-1.7 S=${WORKDIR}/${P}-src/jni src_configure(){ - cd native + cd native || die econf --with-apr=/usr/bin/apr-1-config \ --with-ssl=/usr || die "Could not configure native sources" } @@ -34,12 +34,12 @@ src_configure(){ src_compile() { eant jar -f build.xml - cd native + cd native || die base_src_compile } src_install() { - java-pkg_newjar dist/${PN}-${PV}-dev.jar ${PN}.jar + java-pkg_newjar "dist/${P}-dev.jar" "${PN}.jar" cd native emake DESTDIR="${D}" install || die "Could not install libtcnative-1.so"