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
|
# New ports collection makefile for: glame
# Date created: 26 September 2000
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= glame
PORTVERSION= 1.0.3
CATEGORIES= audio gnome
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= A powerful, fast, stable, and easily extensible sound editor for GNOME
BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
LIB_DEPENDS= mad.2:${PORTSDIR}/audio/libmad \
vorbis.3:${PORTSDIR}/audio/libvorbis
USE_X_PREFIX= yes
USE_GNOME= gnomehack gnomeprefix gnometarget libglade
USE_LIBLTDL= yes
USE_GMAKE= yes
USE_LIBTOOL_VER= 15
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
LDFLAGS="-L${LOCALBASE}/lib -lltdl ${PTHREAD_LIBS}" \
MAKEINFO="makeinfo --no-split"
INFO= glame glame-dev
post-extract:
@cd ${WRKSRC}/doc && ${RM} -f *.info*
post-patch:
@${REINPLACE_CMD} -e 's| libltdl||g ; \
s|,$$LIBLTDL,|,,|g ; \
s|,$$LTDLINCL,|,,|g ; \
s|,$$LTLIBOBJS,|,,|g' ${WRKSRC}/configure
.include <bsd.port.mk>
|