mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
8109611cf5
* Always install the API documentation. A pre-generated copy is already included, so we don't need to run doxygen. PR: 210125 Submitted by: takefu@airport.fm
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= flac
|
|
PORTVERSION= 1.3.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://downloads.xiph.org/releases/flac/
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= Free lossless audio codec
|
|
|
|
LICENSE= BSD3CLAUSE GFDL GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/COPYING.Xiph
|
|
LICENSE_FILE_GFDL= ${WRKSRC}/COPYING.FDL
|
|
|
|
LIB_DEPENDS= libogg.so:audio/libogg
|
|
|
|
USES= iconv libtool pathfix pkgconfig tar:xz
|
|
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-static \
|
|
--enable-sse \
|
|
--with-ogg="${LOCALBASE}" \
|
|
--disable-doxygen-docs \
|
|
--disable-silent-rules \
|
|
--disable-thorough-tests \
|
|
--disable-xmms-plugin
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH} == "i386"
|
|
BUILD_DEPENDS+= nasm:devel/nasm
|
|
.endif
|
|
|
|
post-install:
|
|
cd ${STAGEDIR}${PREFIX}/share/doc && ${MV} ${DISTNAME} flac
|
|
${REINPLACE_CMD} 's:%%PREFIX%%:${PREFIX}:' \
|
|
${STAGEDIR}${PREFIX}/man/man1/flac.1
|
|
${RM} ${STAGEDIR}${PREFIX}/man/man1/flac.1.bak
|
|
|
|
.include <bsd.port.mk>
|