freebsd-ports/audio/libamrnb/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

48 lines
1.3 KiB
Makefile

# Created by: Tatsuki Makino <tatsuki_makino@hotmail.com>
# $FreeBSD$
PORTNAME= libamrnb
PORTVERSION= 11.0.0.0
PORTREVISION= 1
PORTEPOCH= 2
CATEGORIES= audio
MASTER_SITES= http://www.penguin.cz/~utx/ftp/amr/ \
http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/:SRC26104
DISTNAME= amrnb-${DISTVERSION}
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${SRC26104}:SRC26104
DIST_SUBDIR= ${PORTNAME}
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= tatsuki_makino@hotmail.com
COMMENT= 3GPP floating-point Adaptive Multi-Rate (AMR) Speech Codec
LICENSE= BSD3CLAUSE 3GPP
LICENSE_COMB= dual
LICENSE_NAME_3GPP= 3GPP
LICENSE_TEXT_3GPP= ${RESTRICTED}
LICENSE_PERMS_3GPP= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell auto-accept
LICENSE_DISTFILES_BSD3CLAUSE= ${DISTNAME}${EXTRACT_SUFX}
LICENSE_DISTFILES_3GPP= ${SRC26104}
RESTRICTED= unclear legal status, probably need licenses from 3GPP and more
USES= gmake tar:bzip2 libtool
PORTDOCS= AUTHORS COPYING ChangeLog NEWS README TODO readme.txt
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
SUB_FILES= pkg-message
USE_LDCONFIG= yes
OPTIONS_DEFINE= DOCS
SRC26104= 26104-b00.zip
post-extract:
@${CP} ${_DISTDIR}/${SRC26104} ${WRKSRC}/
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
@cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
.include <bsd.port.mk>