2000-11-02 22:09:57 +01:00
|
|
|
# New ports collection makefile for: libao
|
|
|
|
# Date created: 18 October 2000
|
|
|
|
# Whom: t.vanklaveren@student.utwente.nl
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= libao
|
2004-10-22 18:39:16 +02:00
|
|
|
PORTVERSION= 0.8.5
|
2006-03-12 07:12:37 +01:00
|
|
|
PORTREVISION= 2
|
2000-11-02 22:09:57 +01:00
|
|
|
CATEGORIES= audio
|
2003-10-08 18:17:10 +02:00
|
|
|
MASTER_SITES= http://www.xiph.org/ao/src/
|
2000-11-02 22:09:57 +01:00
|
|
|
|
2001-11-03 23:22:34 +01:00
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
2003-02-21 13:52:52 +01:00
|
|
|
COMMENT= Portable audio output library
|
2000-11-02 22:09:57 +01:00
|
|
|
|
2003-10-09 19:42:30 +02:00
|
|
|
WANT_GNOME= yes
|
|
|
|
USE_GNOME= gnomehack pkgconfig
|
2006-02-23 11:40:44 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2001-02-28 18:09:12 +01:00
|
|
|
INSTALLS_SHLIB= yes
|
2000-11-02 22:09:57 +01:00
|
|
|
|
2001-07-19 08:29:35 +02:00
|
|
|
.if defined(NOPORTDOCS)
|
|
|
|
MAKE_ENV= DOC=""
|
|
|
|
.else
|
|
|
|
MAKE_ENV= DOC=doc
|
|
|
|
.endif
|
|
|
|
|
2001-08-27 03:26:34 +02:00
|
|
|
MAN5= libao.conf.5
|
|
|
|
|
2003-10-08 18:17:10 +02:00
|
|
|
.if defined(WITH_ARTS)
|
|
|
|
LIB_DEPENDS= artsc.0:${PORTSDIR}/audio/arts
|
|
|
|
PLIST_SUB+= ARTS=""
|
|
|
|
.else
|
2003-10-27 10:11:28 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-arts
|
2003-10-08 18:17:10 +02:00
|
|
|
PLIST_SUB+= ARTS="@comment "
|
|
|
|
pre-everything::
|
|
|
|
@${ECHO_MSG} "Define WITH_ARTS to enable the aRts module."
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_NAS)
|
|
|
|
LIB_DEPENDS= audio.2:${PORTSDIR}/audio/nas
|
|
|
|
PLIST_SUB+= NAS=""
|
|
|
|
.else
|
2003-10-27 10:11:28 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-nas
|
2003-10-08 18:17:10 +02:00
|
|
|
PLIST_SUB+= NAS="@comment "
|
|
|
|
pre-everything::
|
|
|
|
@${ECHO_MSG} "Define WITH_NAS to enable the NAS module."
|
|
|
|
.endif
|
|
|
|
|
2001-03-02 23:07:37 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2002-09-06 16:36:01 +02:00
|
|
|
.if ${HAVE_GNOME:Mesound}
|
2002-08-23 17:23:17 +02:00
|
|
|
USE_GNOME+= esound
|
|
|
|
PLIST_SUB+= ESOUND=""
|
|
|
|
PKGNAMESUFFIX= -esound
|
2001-03-02 23:07:37 +01:00
|
|
|
.else
|
2003-10-27 10:11:28 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-esd
|
2002-08-23 17:23:17 +02:00
|
|
|
PLIST_SUB+= ESOUND="@comment "
|
2001-03-02 23:07:37 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|