aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorAlex Kozlov <ak@FreeBSD.org>2012-07-09 14:16:18 +0000
committerAlex Kozlov <ak@FreeBSD.org>2012-07-09 14:16:18 +0000
commit8ae5b32c8eaccf75e95cf15ced7f9fcc82a78507 (patch)
tree443aeaa94bbcbd417ea5756b01f547559f06bf10 /audio
parent941374fb46736e76c928eafd1a1a17829a208fcc (diff)
downloadports-8ae5b32c8eaccf75e95cf15ced7f9fcc82a78507.tar.gz
ports-8ae5b32c8eaccf75e95cf15ced7f9fcc82a78507.zip
Notes
Diffstat (limited to 'audio')
-rw-r--r--audio/lash/Makefile28
1 files changed, 20 insertions, 8 deletions
diff --git a/audio/lash/Makefile b/audio/lash/Makefile
index 5f44a280a014..fd314b82aed1 100644
--- a/audio/lash/Makefile
+++ b/audio/lash/Makefile
@@ -7,7 +7,7 @@
PORTNAME= lash
PORTVERSION= 0.5.4
-PORTREVISION= 7
+PORTREVISION= 8
CATEGORIES= audio
MASTER_SITES= SAVANNAH
@@ -17,9 +17,9 @@ COMMENT= Session management system for JACK audio applications
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
-LIB_DEPENDS= jack.0:${PORTSDIR}/audio/jack \
- uuid.1:${PORTSDIR}/misc/e2fsprogs-libuuid \
- dssialsacompat.0:${PORTSDIR}/audio/libdssialsacompat
+LIB_DEPENDS= jack:${PORTSDIR}/audio/jack \
+ uuid:${PORTSDIR}/misc/e2fsprogs-libuuid \
+ dssialsacompat:${PORTSDIR}/audio/libdssialsacompat
USE_GNOME= gnomehack gtk20 libxml2
USE_GMAKE= yes
@@ -31,10 +31,22 @@ MAKE_JOBS_SAFE= yes
CPPFLAGS+= -I${LOCALBASE}/include/dssi -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
-.include <bsd.port.pre.mk>
+PORTDOCS= lash-manual.html
-.if exists(${LOCALBASE}/lib/libreadline.so.6)
-LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MDOCS}
+BUILD_DEPENDS= texi2html:${PORTSDIR}/textproc/texi2html
+.endif
+
+post-extract:
+ @${REINPLACE_CMD} -e 's|texi2html --number|texi2html|' \
+ ${WRKSRC}/docs/Makefile.in
+
+.if ${PORT_OPTIONS:MDOCS}
+post-install:
+ ${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/docs/lash-manual-html-one-page/lash-manual.html ${DOCSDIR}
.endif
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>