02f27a83b4
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)
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# Created by: Tatsuki Makino <tatsuki_makino@hotmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libamrwb
|
|
PORTVERSION= 11.0.0.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.penguin.cz/~utx/ftp/amr/ \
|
|
http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/:SRC26204
|
|
DISTNAME= amrwb-${DISTVERSION}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${SRC26204}:SRC26204
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= tatsuki_makino@hotmail.com
|
|
COMMENT= 3GPP Adaptive Multi-Rate - Wideband (AMR-WB) 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= ${SRC26204}
|
|
|
|
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
|
|
|
|
SRC26204= 26204-b00.zip
|
|
|
|
post-extract:
|
|
@${CP} ${_DISTDIR}/${SRC26204} ${WRKSRC}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|