diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-03-18 05:08:05 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-03-18 05:08:05 +0000 |
commit | ddc487a2c06ecab64fb2a34c9e9954002f653f93 (patch) | |
tree | 85fad31a942fda13075e4ee003dfbee0cb09477d /audio/flac/Makefile | |
parent | 57c088128060f0c1c8e0a259135dcf35a4f5f9d6 (diff) | |
download | FreeBSD-ports-ddc487a2c06ecab64fb2a34c9e9954002f653f93.zip FreeBSD-ports-ddc487a2c06ecab64fb2a34c9e9954002f653f93.tar.gz |
add flac
FLAC stands for Free Lossless Audio Codec
Diffstat (limited to 'audio/flac/Makefile')
-rw-r--r-- | audio/flac/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/audio/flac/Makefile b/audio/flac/Makefile new file mode 100644 index 0000000..16d547f --- /dev/null +++ b/audio/flac/Makefile @@ -0,0 +1,39 @@ +# ex:ts=8 +# New ports collection makefile for: flac +# Date created: Mar 18, 2001 +# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= flac +PORTVERSION= 0.8 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION}-src + +MAINTAINER= ijliao@FreeBSD.org + +.if defined(WITH_XMMS) +BUILD_DEPENDS+= xmms-config:${PORTSDIR}/audio/xmms +LIB_DEPENDS+= xmms.1:${PORTSDIR}/audio/xmms +.endif + +USE_LIBTOOL= yes +USE_AUTOMAKE= yes +USE_AUTOCONF= yes +GNU_CONFIGURE= yes + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +USE_GMAKE= yes + +INSTALLS_SHLIB= yes + +post-install: +.if !defined(NO_PORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/flac + ${CP} -R ${WRKSRC}/doc/ ${PREFIX}/share/doc/flac +.endif + +.include <bsd.port.mk> |