mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
68e6c5f9dc
Recently I had a chance to speak with xmms-wma author on some internet forum and figured out that he thinks of disabling iconv as my sin. So, I've enabled it again, but it is optional now. PR: ports/74959 Submitted by: Roman Bogorodskiy <bogorodskiy@inbox.ru>
38 lines
729 B
Makefile
38 lines
729 B
Makefile
# New ports collection makefile for: xmms-wma
|
|
# Date created: 26 Feb 2004
|
|
# Whom: Roman Bogorodskiy
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xmms-wma
|
|
PORTVERSION= 1.0.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://mcmcc.bat.ru/xmms-wma/
|
|
|
|
MAINTAINER= bogorodskiy@inbox.ru
|
|
COMMENT= WMA plugin for xmms
|
|
|
|
LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms
|
|
|
|
USE_REINPLACE= yes
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_X_PREFIX= yes
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
PLIST_FILES= lib/xmms/Input/libwma.so
|
|
|
|
.if defined(ICONV)
|
|
CFLAGS+= -DICONV
|
|
USE_ICONV= yes
|
|
.endif
|
|
|
|
post-extract:
|
|
@${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/Makefile.inc
|
|
@${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/ffmpeg-strip-wma/config.mak
|
|
|
|
.include <bsd.port.mk>
|