freebsd-ports/audio/waon/Makefile
Stefan Eßer 819f25b36d */*: Remove redundant '-[0-9]*' from CONFLICTS
The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".

Approved by:	portmgr (blanket)
2021-10-29 11:50:18 +02:00

34 lines
787 B
Makefile

# Created by: Kengo Ichiki <kichiki@users.sourceforge.net>
PORTNAME= waon
PORTVERSION= 0.10
PORTREVISION= 4
CATEGORIES= audio
MASTER_SITES= SF
MAINTAINER= kichiki@users.sourceforge.net
COMMENT= Wave-to-Notes transcriber and some utility tools
LICENSE= GPLv2
LIB_DEPENDS= libfftw3.so:math/fftw3 \
libao.so:audio/libao \
libsndfile.so:audio/libsndfile \
libsamplerate.so:audio/libsamplerate
CONFLICTS= pv
USES= gnome ncurses pkgconfig
USE_GNOME= gtk20
PLIST_FILES= bin/waon bin/pv bin/gwaon \
share/man/man1/gwaon.1.gz share/man/man1/pv.1.gz \
share/man/man1/waon.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/waon \
${WRKSRC}/pv \
${WRKSRC}/gwaon ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/*.1 ${STAGEDIR}${PREFIX}/share/man/man1
.include <bsd.port.mk>