blob: d7d40d61a2f99527741e79a8897140952fbb7497 (
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
|
# $NetBSD: Makefile,v 1.7 2006/01/24 07:31:54 wiz Exp $
DISTNAME= hydrogen-0.8.0
PKGREVISION= 2
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hydrogen/}
MAINTAINER= chris.wareham@btinternet.com
HOMEPAGE= http://hydrogen.sourceforge.net/
COMMENT= Real time drum machine/sequencer
USE_LIBTOOL= yes
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --disable-alsa-seq
CONFIGURE_ARGS+= --disable-jack-support
.if exists(${X11BASE}/include/X11/extensions/Xinerama.h)
CONFIGURE_ARGS+= --with-xinerama
.endif
.include "../../audio/libhydrogen/buildlink3.mk"
.include "../../x11/qt3-libs/buildlink3.mk"
.include "../../x11/qt3-tools/buildlink3.mk"
# XXX Please verify whether qt3-tools is really needed at run-time.
# If it is, then remove this comment. If it is not, then remove
# this comment and the line below, and bump PKGREVISION.
BUILDLINK_DEPMETHOD.qt3-tools= full
.include "../../mk/bsd.pkg.mk"
|