diff options
author | ak <ak@FreeBSD.org> | 2012-07-09 22:16:18 +0800 |
---|---|---|
committer | ak <ak@FreeBSD.org> | 2012-07-09 22:16:18 +0800 |
commit | 6e7278b61e58d5fd380922d960a410956f58e794 (patch) | |
tree | e1e1783d6ccc3cbd4e69a751a119200285772f4b /audio | |
parent | 60eaf5d88999e7cd57332bba47f8110744c6dc83 (diff) | |
download | freebsd-ports-gnome-6e7278b61e58d5fd380922d960a410956f58e794.tar.gz freebsd-ports-gnome-6e7278b61e58d5fd380922d960a410956f58e794.tar.zst freebsd-ports-gnome-6e7278b61e58d5fd380922d960a410956f58e794.zip |
- Install manual
- Fix texi2hml usage
- Remove ABI version numbers in LIB_DEPENDS
- Remove leftovers of 5.x support
PR: ports/169627
Submitted by: Kalten <kalten@gmx.at>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/lash/Makefile | 28 |
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> |