blob: f06be2988bc304a540d197c5425a386c0a20a9ed (
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
|
# -*-mode: makefile-*-
# New ports collection makefile for: aRts
# Date created: 18 February 2002
# Whom: will@cvs.kde.org
#
# $FreeBSD$
#
PORTNAME= arts
PORTVERSION= 1.1.4
PORTREVISION= 0
PORTEPOCH= 1
CATEGORIES= audio kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${KDE_VERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Audio system for the KDE integrated X11 desktop
LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile
USE_QT_VER= 3
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
INSTALLS_SHLIB= yes
QTCPPFLAGS+= -L${LOCALBASE}/lib
USE_REINPLACE= yes
DO_NOT_COMPILE+=gmcop
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>
pre-configure::
${REINPLACE_CMD} -e 's|-pedantic ||g' ${WRKSRC}/configure
.include <bsd.port.post.mk>
|