blob: 31444d5e317f324d6d502c722505a284c68cd422 (
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
|
# $NetBSD: Makefile,v 1.24 1999/05/24 20:39:45 tv Exp $
# FreeBSD Id: Makefile,v 1.4 1997/09/11 03:54:43 fenner Exp
#
DISTNAME= vat-4.0b2
CATEGORIES= mbone
MASTER_SITES= ftp://ftp.ee.lbl.gov/conferencing/vat/alpha-test/
DISTFILES= vatsrc-4.0b2.tar.gz
MAINTAINER= mycroft@netbsd.org
HOMEPAGE= http://www-nrg.ee.lbl.gov/vat/
# If configure is changed to look for libgsm.a in ${PREFIX}/lib, then
# we can use this first BUILD_DEPENDS and save some work.
#BUILD_DEPENDS= ${GSM_WORK}/inc/private.h:${GSM_DIR}:patch
BUILD_DEPENDS= ${GSM_WORK}/lib/libgsm.a:${GSM_DIR}:build
DEPENDS+= tk-8.0.5:../../x11/tk80
#DEPENDS+= gsm-1.0.10:${GSM_DIR}
NOT_FOR_PLATFORM= *-*-alpha #filter.cc compiler error
GSM_DIR= ${.CURDIR}/../../audio/gsm
GSM_WORK= ${GSM_DIR}/${WRKDIR:T}/gsm-1.0-pl10
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-gsm=${GSM_WORK}
INSTALL_TARGET= install install-man
post-install:
@strip ${PREFIX}/bin/vat
pre-clean:
@cd ${GSM_DIR} && ${MAKE} clean
.include "../../mk/bsd.pkg.mk"
|