The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
32 lines
707 B
Makefile
32 lines
707 B
Makefile
# New ports collection makefile for: tomcat-native
|
|
# Date created: 28 Feb 2008
|
|
# Whom: Alex Dupre <ale@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tomcat-native
|
|
PORTVERSION= 1.1.13
|
|
PORTREVISION= 1
|
|
CATEGORIES= www java
|
|
MASTER_SITES= ${MASTER_SITE_APACHE}
|
|
MASTER_SITE_SUBDIR= tomcat/tomcat-connectors/native
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= Tomcat native library
|
|
|
|
LIB_DEPENDS= apr-1.2:${PORTSDIR}/devel/apr
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/jni/native
|
|
|
|
USE_OPENSSL= yes
|
|
USE_JAVA= yes
|
|
USE_LDCONFIG= yes
|
|
JAVA_VERSION= 1.5+
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-apr=${LOCALBASE} \
|
|
--with-java-home=${JAVA_HOME} \
|
|
--with-ssl=${SSLBASE}
|
|
|
|
.include <bsd.port.mk>
|