diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-09-26 17:37:39 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-09-26 17:37:39 +0000 |
commit | df314c0224c2194eae7ce6df641836cc26a9e901 (patch) | |
tree | a3142663da212ea53d7a0ec91b8302911652c03b /audio/glame/Makefile | |
parent | d0e7148e8bc25563640d56d6a153f8f274b54756 (diff) | |
download | FreeBSD-ports-df314c0224c2194eae7ce6df641836cc26a9e901.zip FreeBSD-ports-df314c0224c2194eae7ce6df641836cc26a9e901.tar.gz |
Add glame - a scheme-extensible audio processing tool for GNOME.
Diffstat (limited to 'audio/glame/Makefile')
-rw-r--r-- | audio/glame/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/audio/glame/Makefile b/audio/glame/Makefile new file mode 100644 index 0000000..814b1cd --- /dev/null +++ b/audio/glame/Makefile @@ -0,0 +1,49 @@ +# New ports collection makefile for: glame +# Date created: 26 September 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= glame +PORTVERSION= 0.2.0 +CATEGORIES= audio gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= sobomax@FreeBSD.org + +LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \ + guile.9:${PORTSDIR}/lang/guile +RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore + +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_LIBTOOL= yes +INSTALLS_SHLIB= yes + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ + --datadir=${PREFIX}/share/gnome +CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ + GTK_CONFIG="${GTK_CONFIG}" \ + CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +pre-patch: + @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ + s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g ; \ + s|-lpthread|-pthread|g' + +post-install: + @install-info ${PREFIX}/info/glame.info \ + --section="Audio Processing" \ + --entry="* glame: (glame). audio processing tool for GNOME" \ + ${PREFIX}/info/dir + +.include <bsd.port.mk> |