blob: f3e6bc369cb2790d5515863ee34daf3e4a8d5b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.5 2002/03/31 13:32:22 dmcmahill Exp $
#
DISTNAME= cheesetracker-0.2.2
CATEGORIES= audio
MASTER_SITES= http://www.reduz.com.ar/cheesetracker/
MAINTAINER= collver@linuxfreemail.com
HOMEPAGE= http://www.reduz.com.ar/cheesetracker/
COMMENT= impulse tracker clone
DEPENDS+= gtk-->=1.2:../../x11/gtk--
GCC_VERSION!= gcc --version
.if (${GCC_VERSION:C/-.*$$//} == egcs)
# "egcs" cannot be used, as this package tickles c++ compiler bugs
.include "../../lang/gcc/Makefile.gcc"
.endif
GNU_CONFIGURE= yes
CONFIGURE_ENV= CXXFLAGS="-O -Dusleep=pth_usleep -Dwrite=__pthread_write"
.include "../../mk/bsd.pkg.mk"
|