freebsd-ports/audio/gsi/Makefile
Kirill Ponomarev ceeac267a2 Fix build with gcc-3.4
PR:		ports/70626
Submitted by:	Ports Fury
2004-08-18 18:05:47 +00:00

61 lines
1.5 KiB
Makefile

# New ports collection makefile for: gsi
# Date created: 3 October 2000
# Whom: Sean Farley <sean-freebsd@farley.org>
#
# $FreeBSD$
#
PORTNAME= gsi
PORTVERSION= 0.9.6
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= General sound interface
USE_BZIP2= yes
USE_REINPLACE= yes
USE_GMAKE= yes
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" MYFLAGS="${CFLAGS}" OPTIMIZE=""
INSTALLS_SHLIB= yes
MANCOMPRESSED= no
MAN1= gsifile.1 gsiplay.1
MAN3= gsi.3 gsi_commands.3 gsi_events.3 gsif.3 gsipcm.3
MAN5= gsi.conf.5
MAN7= gsi_overview.7
MAN8= gsi_server.8
post-extract:
@${RM} -f ${WRKSRC}/lib/include/gsi/gsisynth.h
post-patch:
.for file in lib/device/gsimixer/api/mixer_fbsd.c \
lib/device/gsipcm/api/pcm_fbsd.c
@${REINPLACE_CMD} -e \
's|machine/soundcard.h|sys/soundcard.h|g' ${WRKSRC}/${file}
.endfor
.for file in server/FINISH_host_allow.c server/client.c server/conf.c
@${REINPLACE_CMD} -e \
's|"/etc/|"${PREFIX}/etc/|g' ${WRKSRC}/${file}
.endfor
do-configure:
@${SH} ${FILESDIR}/configure.sh ${PREFIX} ${WRKSRC}
post-install:
@${INSTALL_DATA} ${WRKSRC}/server/conf/gsi.conf.fbsd \
${PREFIX}/etc/gsi.conf.sample
.for fileNdx in gsi_server gsifile gsiplay
@${STRIP_CMD} ${PREFIX}/bin/${fileNdx}
.endfor
@${ECHO_MSG} "A sample configuration file was installed as" \
${PREFIX}/etc/gsi.conf.sample.
@${ECHO_MSG} "Copy and edit it to fit the system."
@${ECHO_MSG}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>