freebsd-ports/security/i2p/Makefile
Tijl Coosemans 02f27a83b4 The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user.  Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables.  LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well.  The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.

Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).

PR:		215882
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2017-01-18 13:20:31 +00:00

97 lines
2.5 KiB
Makefile

# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
# $FreeBSD$
PORTNAME= i2p
PORTVERSION= 0.9.16
CATEGORIES= security java net-p2p
MASTER_SITES= SF/${PORTNAME:tl}/${PORTVERSION} \
http://download.i2p2.no/releases/${PORTVERSION}/ \
http://download2.geti2p.com/${PORTVERSION}/ \
http://download.geti2p.com/${PORTVERSION}/ \
http://download.i2p2.de/releases/${PORTVERSION}/ \
https://launchpad.net/i2p/trunk/${PORTVERSION}/+download/ \
https://googledrive.com/host/0B4jHEq5G7_EPWV9UeERwdGplZXc/${PORTVERSION}/
DISTFILES= i2psource_${PORTVERSION}${EXTRACT_SUFX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Anonymizing network
LICENSE= EULA
LICENSE_NAME= End User License Agreement
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
LICENSE_DISTFILES= i2psource_${PORTVERSION}${EXTRACT_SUFX}
BUILD_DEPENDS= ${LOCALBASE}/lib/libgmp.a:math/gmp
LIB_DEPENDS= libiconv.so:converters/libiconv
ONLY_FOR_ARCHS= i386 amd64
ONLY_FOR_ARCHS_REASON= i2p libwrapper.so library binary only available for i386 and amd64
OPTIONS_DEFINE= DOCS
USES= gettext tar:bzip2
USE_RC_SUBR= i2p
USE_ANT= yes
USE_JAVA= yes
JAVA_BUILD= jdk
JAVA_VERSION= 1.6+
USE_LOCALE= en_US.UTF-8
ALL_TARGET= \
updater \
tarball
PORTDATA= *
PLIST_FILES= \
sbin/i2prouter
SUB_FILES= wrapper.sh
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
ALL_TARGET+= javadoc
PORTDOCS= *
JAVADOC_WRKSRC= ${WRKSRC}/build/javadoc
.endif
.include <bsd.port.pre.mk>
post-patch:
# postinstall.sh SHOULD only do post installation house keeping
@${REINPLACE_CMD} -E \
-e 's|./i2prouter[[:space:]]+start||' \
${WRKSRC}/installer/resources/postinstall.sh
@${REINPLACE_CMD} -E \
-e 's|%INSTALL_PATH|$${HOME}/i2p|' \
-e 's|%USER_HOME|$${HOME}|' \
${WRKSRC}/installer/resources/i2prouter \
${WRKSRC}/installer/resources/runplain.sh
do-install:
@${MKDIR} ${STAGEDIR}${DATADIR}
# install
@${INSTALL_DATA} ${WRKSRC}/i2p.tar.bz2 \
${STAGEDIR}${DATADIR}/
# update
@${INSTALL_DATA} ${WRKSRC}/i2pupdate.zip \
${STAGEDIR}${DATADIR}/
# wrapper
@${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh \
${STAGEDIR}${PREFIX}/sbin/i2prouter
# doc
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/installer/resources/readme/readme*.html ${STAGEDIR}${DOCSDIR}
# line taken from textproc/xerces-j maintained by hq@FreeBSD.org
@cd ${JAVADOC_WRKSRC} && \
${FIND} * -type d -exec ${MKDIR} "${STAGEDIR}${DOCSDIR}/{}" \; && \
${FIND} * -not -type d -exec ${INSTALL_DATA} {} "${STAGEDIR}${DOCSDIR}/{}" \;
.endif
.include <bsd.port.post.mk>