2001-03-18 05:08:05 +00:00
|
|
|
# ex:ts=8
|
|
|
|
# New ports collection makefile for: flac
|
|
|
|
# Date created: Mar 18, 2001
|
|
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= flac
|
2001-08-03 14:09:24 +00:00
|
|
|
PORTVERSION= 1.0
|
2001-03-18 05:08:05 +00:00
|
|
|
CATEGORIES= audio
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
|
2001-11-03 22:22:34 +00:00
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
2001-03-18 05:08:05 +00:00
|
|
|
|
|
|
|
.if defined(WITH_XMMS)
|
|
|
|
BUILD_DEPENDS+= xmms-config:${PORTSDIR}/audio/xmms
|
2001-12-02 13:13:46 +00:00
|
|
|
LIB_DEPENDS+= xmms.2:${PORTSDIR}/audio/xmms
|
2001-06-10 14:03:01 +00:00
|
|
|
PLIST_SUB= XMMS=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB= XMMS="@comment "
|
2001-03-18 05:08:05 +00:00
|
|
|
.endif
|
|
|
|
|
2001-06-08 02:06:30 +00:00
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
2001-06-09 04:57:03 +00:00
|
|
|
BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
|
2001-06-08 02:06:30 +00:00
|
|
|
.endif
|
|
|
|
|
2002-01-06 06:20:22 +00:00
|
|
|
USE_AUTOMAKE_VER=14
|
2001-09-24 09:53:12 +00:00
|
|
|
AUTOMAKE_ARGS= --include-deps
|
2001-03-18 05:08:05 +00:00
|
|
|
USE_LIBTOOL= yes
|
|
|
|
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
|
|
|
|
INSTALLS_SHLIB= yes
|
2001-08-03 14:09:24 +00:00
|
|
|
MAN1= flac.1
|
|
|
|
|
|
|
|
post-extract:
|
|
|
|
@${RM} -r ${WRKSRC}/obj
|
2001-03-18 05:08:05 +00:00
|
|
|
|
|
|
|
post-install:
|
2001-06-10 14:03:01 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
2001-03-18 05:08:05 +00:00
|
|
|
${MKDIR} ${PREFIX}/share/doc/flac
|
2001-04-03 06:18:48 +00:00
|
|
|
${MKDIR} ${PREFIX}/share/doc/flac/images
|
2001-05-27 19:05:43 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/flac
|
2001-06-08 02:06:30 +00:00
|
|
|
.for file in 1x1.gif cafebug.gif logo.jpg
|
2001-05-27 19:05:43 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/doc/images/${file} ${PREFIX}/share/doc/flac/images
|
2001-04-03 06:18:48 +00:00
|
|
|
.endfor
|
2001-03-18 05:08:05 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|