aboutsummaryrefslogtreecommitdiff
path: root/audio/aumix/Makefile
blob: 59f94f8ca7975a6698510d175fca3d1b0805d4da (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Created by: Chris Piazza <cpiazza@FreeBSD.org>

PORTNAME=	aumix
PORTVERSION=	2.9.1
PORTREVISION=	1
CATEGORIES=	audio
MASTER_SITES=	SF \
		http://jpj.net/~trevor/aumix/ \
		http://jpj.net/~trevor/aumix/old/

MAINTAINER=	unix4all@gulic.org
COMMENT=	Audio mixer for X11, terminal, or command line

LICENSE=	GPLv2
LICENSE_FILE=	${WRKSRC}/COPYING

USES=		ncurses tar:bzip2
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--includedir="${LOCALBASE}/include" \
		--enable-own-labels \
		--libdir="${LOCALBASE}/lib"
CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib
# Fix build with clang11
CFLAGS+=	-fcommon

PLIST_FILES=	bin/aumix bin/mute bin/xaumix \
		man/man1/aumix.1.gz \
		man/man1/xaumix.1.gz \
		man/man1/mute.1.gz
.for ii in ansi aumix.xpm fadein.set fadeout.set vt100 xterm
PLIST_FILES+=	share/aumix/${ii}
.endfor

OPTIONS_DEFINE=	NLS GTK2

NLS_USES=		gettext
NLS_CONFIGURE_OFF=	--disable-nls
.for ii in ca de el es fr gl it ja nl pl pt_BR ru sv uk zh_CN
NLS_PLIST_FILES+=	share/locale/${ii}/LC_MESSAGES/aumix.mo
.endfor

GTK2_USES=	gnome
GTK2_USE=	GNOME=gtk20
GTK2_CONFIGURE_OFF=--without-gtk

pre-patch:
	@${REINPLACE_CMD} -e "s:/etc:${PREFIX}/etc:" ${WRKSRC}/src/common.[ch]

.include <bsd.port.mk>