blob: 1ab4d122c6451e00ebd8477235c8ac87329f8844 (
plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# $NetBSD: Makefile,v 1.68 2006/10/22 16:03:18 rillig Exp $
DISTNAME= nas-1.8.src
PKGNAME= ${DISTNAME:S/.src//}
PKGREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://nas.codebrilliance.com/nas/ \
ftp://ftp.uni-duisburg.de/Sound/NAS/
MAINTAINER= markd@NetBSD.org
HOMEPAGE= http://radscan.com/nas.html
COMMENT= Network Audio System
DEPENDS+= p5-perl-headers-${OS_VERSION}{,nb*}:../../devel/p5-perl-headers
PKG_INSTALLATION_TYPES= overwrite pkgviews
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
USE_TOOLS+= gmake perl:run
USE_IMAKE= yes
MAKE_FLAGS+= MANPATH=${PREFIX}/${PKGMANDIR}
PKG_SYSCONFSUBDIR= nas
REPLACE_PERL+= clients/audio/auscope/auscope
SUBST_CLASSES+= sysconf
SUBST_STAGE.sysconf= pre-configure
SUBST_FILES.sysconf= config/NetAudio.def
SUBST_SED.sysconf= -e "s|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g"
SUBST_CLASSES+= ossaudio
SUBST_STAGE.ossaudio= pre-configure
SUBST_FILES.ossaudio= server/nasd.conf.eg server/dda/voxware/auvoxware.c
SUBST_SED.ossaudio= -e "s|@DEVOSSAUDIO@|${DEVOSSAUDIO}|g"
SUBST_CLASSES+= mungeman
SUBST_STAGE.mungeman= pre-configure
SUBST_FILES.mungeman= config/mungeman
SUBST_SED.mungeman= -e 's|^ *\#|\#|g'
.include "../../mk/bsd.prefs.mk"
.if defined(UNPRIVILEGED) && !empty(UNPRIVILEGED:M[Yy][Ee][Ss])
SUBST_CLASSES+= owngrp
SUBST_MESSAGE.owngrp= Fixing hardcoded owner/group.
SUBST_STAGE.owngrp= post-configure
SUBST_FILES.owngrp= clients/audio/auconvert/Makefile \
clients/audio/auctl/Makefile \
clients/audio/audemo/Makefile \
clients/audio/audial/Makefile \
clients/audio/auedit/Makefile \
clients/audio/auinfo/Makefile \
clients/audio/aupanel/Makefile \
clients/audio/auphone/Makefile \
clients/audio/auplay/Makefile \
clients/audio/aurecord/Makefile \
clients/audio/auscope/Makefile \
clients/audio/autool/Makefile \
clients/audio/auwave/Makefile \
clients/audio/examples/Makefile \
clients/audio/util/Makefile \
clients/audio/widgets/Makefile \
clients/audio/Makefile \
clients/Makefile config/Makefile doc/Makefile \
doc/man/lib/Makefile doc/man/Makefile \
include/audio/Makefile include/Makefile \
lib/Makefile lib/audio/Makefile \
Makefile server/Makefile
SUBST_SED.owngrp= -e 's/-c -o root -g wheel/-c -o ${UNPRIVILEGED_USER} -g ${UNPRIVILEGED_GROUP}/g'
.endif
.if ${OPSYS} == "SunOS"
post-install:
${LN} -s ${PREFIX}/lib/libaudio.so.2.4 ${PREFIX}/lib/libaudio.so.2
.endif
PLIST_SRC= ${PKGDIR}/PLIST.clients
.if ${OPSYS} != "Interix"
. if (${MACHINE_ARCH} == "i386") || \
(${MACHINE_ARCH} == "x86_64") || \
(${MACHINE_ARCH} == "sparc64") || \
(${MACHINE_ARCH} == "sparc")
. include "../../mk/oss.buildlink3.mk"
EGDIR= ${PREFIX}/share/examples/nas
CONF_FILES= ${EGDIR}/nasd.conf.eg ${PKG_SYSCONFDIR}/nasd.conf
. if ${OPSYS} != "SunOS"
PLIST_SRC+= ${PKGDIR}/PLIST.voxware
. endif
PLIST_SRC+= ${PKGDIR}/PLIST.server
. endif
.endif
pre-configure:
cd ${WRKSRC}/config && ${SETENV} ${CONFIGURE_ENV} ./configure
.include "../../mk/bsd.pkg.mk"
|