1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/audio/lash/Makefile
Baptiste Daroussin 5978476c35 In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio

With hat:	portmgr
2013-12-11 14:35:36 +00:00

63 lines
1.4 KiB
Makefile

# Created by: Edward Tomasz Napierala <trasz@pin.if.uz.zgora.pl>
# $FreeBSD$
PORTNAME= lash
PORTVERSION= 0.5.4
PORTREVISION= 8
CATEGORIES= audio
MASTER_SITES= SAVANNAH
MAINTAINER= ports@FreeBSD.org
COMMENT= Session management system for JACK audio applications
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack \
libdssialsacompat.so:${PORTSDIR}/audio/libdssialsacompat \
libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid
OPTIONS_DEFINE= READLINE DOCS
OPTIONS_DEFAULT=READLINE
USES= gmake pathfix pkgconfig
NO_STAGE= yes
USE_GNOME= gtk20 libxml2
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-alsa-midi
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include/dssi -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MREADLINE}
USES+= readline
PLIST_SUB+= READLINE=""
.else
CONFIGURE_ENV+= vl_cv_lib_readline=no
PLIST_SUB+= READLINE="@comment "
.endif
.if ${PORT_OPTIONS:MDOCS}
BUILD_DEPENDS+= texi2html:${PORTSDIR}/textproc/texi2html
.else
CONFIGURE_ENV+= ac_cv_prog_lash_texi2html=no
.endif
post-patch:
@${REINPLACE_CMD} -e \
'/if test/s|==|=|' ${WRKSRC}/configure
@${REINPLACE_CMD} -e \
'/texi2html/s|--number||' ${WRKSRC}/docs/Makefile.in
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC}/docs/lash-manual-html-one-page \
&& ${INSTALL_DATA} lash-manual.html ${DOCSDIR}
.endif
.include <bsd.port.mk>