blob: fb377e31474b0deaf41420f31b77b7c498838384 (
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
|
# ex:ts=8
# Ports collection makefile for: cheesetracker
# Date created: Jan 31, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= cheesetracker
PORTVERSION= 0.2.4
CATEGORIES= audio
MASTER_SITES= http://www.reduz.com.ar/cheesetracker/
MAINTAINER= ports@FreeBSD.org
LIB_DEPENDS= sigc:${PORTSDIR}/devel/libsigc++ \
gtkmm:${PORTSDIR}/x11-toolkits/gtk--
GNU_CONFIGURE= yes
USE_GMAKE= yes
pre-configure:
.for file in install-sh missing mkinstalldirs
@${LN} -sf ${LOCALBASE}/share/automake14/automake/${file} ${WRKSRC}
.endfor
post-patch:
@${PERL} -pi -e "s,AFMT_S16_NE,AFMT_S16_LE,g" ${WRKSRC}/waveout/sound_driver_oss.cpp
.include <bsd.port.mk>
|