cceaba05e0
PR: ports/69071 Submitted by: Jean-Yves Lefort <jylefort@brutele.be> Approved by: maintainer timeout (1 month)
71 lines
1.9 KiB
Makefile
71 lines
1.9 KiB
Makefile
# New ports collection makefile for: baudline
|
|
# Date created: 19 Jan 2002
|
|
# Whom: David Yeske <dyeske@yahoo.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= baudline
|
|
PORTVERSION= 0.98
|
|
CATEGORIES= audio linux
|
|
MASTER_SITES= http://www.baudline.com/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= baudline_${PORTVERSION:S/.p/pre/}_i686
|
|
|
|
MAINTAINER= dyeske@yahoo.com
|
|
COMMENT= A real-time signal analysis tool and an offline time-frequency browser
|
|
|
|
RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123
|
|
|
|
USE_X_PREFIX= yes
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_LINUX= yes
|
|
NO_BUILD= yes
|
|
STRIP=
|
|
|
|
# Linux binary should not be stripped by INSTALL_PROGRAM
|
|
# because as a side effect it brands the binary as FreeBSD.
|
|
STRIP=
|
|
|
|
RESTRICTED= "author requests no distribution except from their site"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTFILES})
|
|
IGNORE= may not be automatically fetched due to licensing\
|
|
restrictions. You must manually fetch ${DISTFILES} from\
|
|
http://www.baudline.com/download.html. Once ${DISTFILES}\
|
|
has been downloaded, move it to ${DISTDIR} and then\
|
|
restart this build
|
|
.endif
|
|
|
|
LINPROCFS!= /sbin/mount | ${GREP} linprocfs | ${AWK} '{print $1}'
|
|
|
|
pre-everything::
|
|
.if !empty(LINPROCFS)
|
|
@${ECHO_CMD} ""
|
|
@${ECHO_CMD} "Check if linprocfs is running: YES"
|
|
.else
|
|
@${ECHO_CMD} "-----------------------------------------------------------"
|
|
@${ECHO_CMD} ""
|
|
@${ECHO_CMD} "Baudline needs a running linprocfs, which is not"
|
|
@${ECHO_CMD} "activated on your system. Please read the linprocfs\(5\)"
|
|
@${ECHO_CMD} "manpage and add the following line to /etc/fstab:"
|
|
@${ECHO_CMD} ""
|
|
@${ECHO_CMD} "linproc /compat/linux/proc linprocfs rw 0 0"
|
|
@${ECHO_CMD} ""
|
|
@${ECHO_CMD} "-----------------------------------------------------------"
|
|
@${FALSE}
|
|
.endif
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/baudline ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in README mailcap.txt mime.types.txt
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|