mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
6527ef2070
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)
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
# New ports collection makefile for: bmp-flac
|
|
# Date created: 2005-05-22
|
|
# Whom: nork@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= flac
|
|
PORTVERSION= 20040316
|
|
PORTREVISION= 5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://ccm.sherry.jp/tmp/
|
|
PKGNAMEPREFIX= bmp-
|
|
DISTNAME= ${PORTNAME}-CVS-${PORTVERSION}-with-bmp-plugin
|
|
|
|
MAINTAINER= nork@FreeBSD.org
|
|
COMMENT= FLAC input plugin for beep-media-player
|
|
|
|
LIB_DEPENDS= beep.2:${PORTSDIR}/multimedia/beep-media-player \
|
|
FLAC.10:${PORTSDIR}/audio/flac
|
|
|
|
PLIST_FILES= lib/bmp/Input/libbmp-flac.so
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-libiconv-prefix="${LOCALBASE}" \
|
|
--with-ogg="${LOCALBASE}" \
|
|
--with-xmms-prefix="${LOCALBASE}"
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure
|
|
|
|
# "obj" is magic to our make(1)
|
|
# make sure we get the new includes from ${LOCALBASE}/include/FLAC
|
|
post-configure:
|
|
@${RM} -rf ${WRKSRC}/obj
|
|
@${RM} -rf ${WRKSRC}/include/FLAC
|
|
|
|
# This is to avoid libtool running ldconfig -m ${LOCALBASE}/lib/bmp/Input
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/src/plugin_bmp/.libs/libbmp-flac.so ${PREFIX}/lib/bmp/Input
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 700042
|
|
.if ${ARCH} == "sparc64"
|
|
BROKEN= Does not compile with GCC 4.2
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|