9cf490f25e
It is an implementation of a proposal that originated from this discussion. Its aim is to allow you to have many different audio programs running at once, to save their setup, close them down and then easily reload the setup at some other time. LASH doesn't deal with any kind of audio data itself; it just runs programs, deals with saving/loading (arbitrary) data and connects different kinds of virtual audio ports together (currently JACK and ALSA sequencer ports). It can also be used to move entire sessions between computers, or post sessions on the Internet for download. WWW: http://www.nongnu.org/lash/ PR: ports/107875 Submitted by: trasz <trasz at pin.if.uz.zgora.pl>
38 lines
950 B
Makefile
38 lines
950 B
Makefile
# New ports collection makefile for: lash
|
|
# Date created: 2007-01-13
|
|
# Whom: trasz <trasz@pin.if.uz.zgora.pl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lash
|
|
PORTVERSION= 0.5.2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://download.savannah.gnu.org/releases/lash/
|
|
|
|
MAINTAINER= trasz@pin.if.uz.zgora.pl
|
|
COMMENT= Session management system for JACK audio applications
|
|
|
|
LIB_DEPENDS= jack.0:${PORTSDIR}/audio/jack \
|
|
uuid.1:${PORTSDIR}/misc/e2fsprogs-libuuid \
|
|
dssialsacompat.0:${PORTSDIR}/audio/libdssialsacompat
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-alsa-midi
|
|
CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/dssi -L${LOCALBASE}/lib
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk20 libxml2 gnomehack
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500018 || exists(${LOCALBASE}/lib/libreadline.so.5)
|
|
LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 500000
|
|
BROKEN= Does not compile on 4.x
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|