blob: 993954d247863cea2bd4ab1c19a3d13c6642dd34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# New ports collection makefile for: libao
# Date created: 18 October 2000
# Whom: t.vanklaveren@student.utwente.nl
#
# $FreeBSD$
#
PORTNAME= libao
PORTVERSION= 0.8.3
CATEGORIES= audio
MASTER_SITES= ftp://ftp.linuxpowered.com/pub/Vorbis/unix/ \
ftp://ftp.wiles.org/pub/mirrors/Vorbis/unix/ \
http://xiph.stratius.com/vorbis/unix/ \
http://www.oddsock.org/vorbis/unix/ \
http://www.casterclub.com/vorbis/unix/ \
http://www.math.utoledo.edu/~chaese/Vorbis/unix/
MAINTAINER= naddy@FreeBSD.org
WANT_ESOUND= yes
GNU_CONFIGURE= yes
INSTALLS_SHLIB= yes
.if defined(NOPORTDOCS)
MAKE_ENV= DOC=""
.else
MAKE_ENV= DOC=doc
.endif
MAN5= libao.conf.5
.include <bsd.port.pre.mk>
.if defined(HAVE_ESOUND)
USE_ESOUND= yes
PLIST_SUB= ESOUND=""
.else
PLIST_SUB= ESOUND="@comment "
.endif
.if exists(${LOCALBASE}/bin/artsc-config)
LIB_DEPENDS= artsc.0:${PORTSDIR}/audio/arts
PLIST_SUB+= ARTS=""
.else
PLIST_SUB+= ARTS="@comment "
.endif
.include <bsd.port.post.mk>
|