diff options
author | kevlo <kevlo@FreeBSD.org> | 2002-02-09 17:45:40 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2002-02-09 17:45:40 +0800 |
commit | 5c4c8f69669b12df28038d028fcf367e427feccf (patch) | |
tree | 7fee35d9fa80ed1487cc6b2770ff2d2a6c454927 /audio/baudline/Makefile | |
parent | 4a6ae212e0aec07ec3b3d8990afce668b52067b1 (diff) | |
download | freebsd-ports-gnome-5c4c8f69669b12df28038d028fcf367e427feccf.tar.gz freebsd-ports-gnome-5c4c8f69669b12df28038d028fcf367e427feccf.tar.zst freebsd-ports-gnome-5c4c8f69669b12df28038d028fcf367e427feccf.zip |
Initial import of baudline 0.88
Baudline is a real-time signal analysis tool and an offline
time-frequency browser.
PR: 34484
Submitted by: David Yeske <dyeske@yahoo.com>
Diffstat (limited to 'audio/baudline/Makefile')
-rw-r--r-- | audio/baudline/Makefile | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/audio/baudline/Makefile b/audio/baudline/Makefile new file mode 100644 index 000000000000..7e9148dd2266 --- /dev/null +++ b/audio/baudline/Makefile @@ -0,0 +1,65 @@ +# New ports collection makefile for: baudline +# Date created: 19 Jan 2002 +# Whom: David Yeske <dyeske@yahoo.com> +# +# $FreeBSD$ +# + +PORTNAME= baudline +PORTVERSION= 0.88 +CATEGORIES= audio +MASTER_SITES= http://www.geocities.com/sigfriedblip/baudline/ +DISTNAME= baudline_${PORTVERSION:S/.p/pre/}_i686 + +MAINTAINER= dyeske@yahoo.com + +FETCH_DEPENDS= ${LINUXBASE}/lib/libc.so.6:${PORTSDIR}/emulators/linux_base + +DOCDIR= share/doc/${PORTNAME} +DOC_FILES= mailcap.txt mime.types.txt README +ONLY_FOR_ARCHS= i386 +RESTRICTED= "author requests no distribution except from their site" +NO_CDROM= ${RESTRICTED} +NO_PACKAGE= ${RESTRICTED} +USE_X_PREFIX= yes +NO_BUILD= yes +LINPROCFS!= /sbin/mount | /usr/bin/grep linprocfs | /usr/bin/awk '{print $1}' + +.include <bsd.port.pre.mk> + +pre-fetch: +.if ${LINPROCFS} + @${ECHO} + @${ECHO} Check if linprocfs is running: YES +.else + @${ECHO} ----------------------------------------------------------- + @${ECHO} + @${ECHO} Baudline needs a running linprocfs, which is not + @${ECHO} activated on your system. Please read the linprocfs\(5\) + @${ECHO} manpage and add the following line to /etc/fstab: + @${ECHO} + @${ECHO} linproc /compat/linux/proc linprocfs rw 0 0 + @${ECHO} + @${ECHO} ----------------------------------------------------------- + @${FALSE} +.endif + +pre-install: + ${ECHO} bin/baudline > ${PLIST} +.if !defined(NOPORTDOCS) +.for i in ${DOC_FILES} + ${ECHO} ${DOCDIR}/`${BASENAME} ${i}` >> ${PLIST} +.endfor + ${ECHO} @dirrm ${DOCDIR} >> ${PLIST} +.endif + +do-install: + ${CP} ${WRKSRC}/baudline ${PREFIX}/bin +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/${DOCDIR} +.for i in ${DOC_FILES} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${DOCDIR} +.endfor +.endif + +.include <bsd.port.post.mk> |