aboutsummaryrefslogtreecommitdiff
path: root/audio/play/Makefile
blob: f58c839cbe9c0dfeb00a611110f3c6bf02d68c18 (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
PORTNAME=	play
PORTVERSION=	1.0
PORTREVISION=	2
CATEGORIES=	audio
MASTER_SITES=	PORTS_JP

MAINTAINER=	bofh@FreeBSD.org
COMMENT=	Simple audio file player

LICENSE=	NONE

USES=		uidfix

MAKE_ARGS=	CFLAGS="${CFLAGS}" MANDIR="${PREFIX}/man/ja/man" BINDIR="${PREFIX}/bin"
# XXX PIE static libraries are not supported by base system /usr/share/mk
MAKE_ARGS+=	WITHOUT_PIE=true

CONFLICTS=	sox

PLIST_FILES=	bin/play man/ja/man1/play.1.gz

.include <bsd.port.pre.mk>

.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
CFLAGS+=	-Wno-error=int-conversion
.endif

post-patch:
.for file in play_audio.c mixer_ctl.c encode_sun.c speed.c
	@${REINPLACE_CMD} '/soundcard\.h/s,machine,sys,' ${WRKSRC}/${file}
.endfor

.include <bsd.port.post.mk>