aboutsummaryrefslogtreecommitdiff
path: root/audio/quelcom/Makefile
blob: 2904e90c52614e27f8bcdb277c0300a6526a675d (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
51
52
53
54
# New ports collection makefile for:   quelcom
# Date created:        27 December 2000
# Whom:                George Reid <greid@ukug.uk.freebsd.org>
#
# $FreeBSD$
#

PORTNAME=	quelcom
PORTVERSION=	0.4.0
CATEGORIES=	audio
MASTER_SITES=	http://www.etse.urv.es/~dmanye/quelcom/src/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	A set of command-line utilities for MP3 and wave files

USE_GCC=	3.3
USE_GETOPT_LONG=	yes
USE_GETTEXT=	yes
USE_GMAKE=	yes
MAKEFILE=	makefile
MAKE_ENV=	CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
USE_LDCONFIG=	yes

CXXFLAGS+=	-I../lib -I${LOCALBASE}/include ${CPPFLAGS} \
		-DHAVE_DECL_GETOPT -fPIC
LDFLAGS=	-L../lib -L${LOCALBASE}/lib -lintl

post-patch:
	@${FIND} ${WRKSRC} -name "makefile" | ${XARGS} ${REINPLACE_CMD} -e \
		's|make |$$(MAKE) |g ; \
		 s|^CXX=|CXX?=|g ; \
		 s|^CXXFLAGS=|CXXFLAGS+=|g ; \
		 s|^LDFLAGS=|LDFLAGS+=|g ; \
		 s|-L./../lib -lqextra|$$(LDFLAGS) -lqextra|g'

do-install:
.for f in qmp3check qmp3cut qmp3info qmp3join qmp3report qwavcut qwavfade \
	qwavheaderdump qwavinfo qwavjoin qwavsilence
	${INSTALL_PROGRAM} ${WRKSRC}/bin/${f} ${PREFIX}/bin
.endfor
.for f in libqextra.so libqmp3.so libqwav.so
	${INSTALL_DATA} ${WRKSRC}/lib/${f} ${PREFIX}/lib
.endfor
.for lang in ca es
	@${MKDIR} ${PREFIX}/share/locale/${lang}/LC_MESSAGES
	${INSTALL_DATA} ${WRKSRC}/po/${lang}.mo \
		${PREFIX}/share/locale/${lang}/LC_MESSAGES/quelcom.mo
.endfor
.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
	${INSTALL_DATA} ${WRKSRC}/doc/quelcom.html ${DOCSDIR}
.endif

.include <bsd.port.mk>