97133a8831
in TagLib when trying to open the file: its path was just the filename (upstream git commit 1e1aba121d512f8fadc627d093c54e063416da67)
48 lines
881 B
Makefile
48 lines
881 B
Makefile
# $OpenBSD: Makefile,v 1.15 2012/12/05 12:46:19 dcoppa Exp $
|
|
|
|
COMMENT = ncurses mpd client inspired by ncmpc
|
|
|
|
DISTNAME = ncmpcpp-0.5.10
|
|
REVISION = 3
|
|
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
CATEGORIES = audio
|
|
|
|
HOMEPAGE = http://ncmpcpp.rybczak.net/
|
|
|
|
MAINTAINER = David Coppa <dcoppa@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${HOMEPAGE}stable/ \
|
|
http://distfiles.nl/
|
|
|
|
WANTLIB = c crypto curl idn m mpdclient \
|
|
ncursesw pthread ssl stdc++ tag z
|
|
|
|
LIB_DEPENDS = audio/libmpdclient>=2.4 \
|
|
audio/taglib \
|
|
net/curl
|
|
|
|
MODULES = devel/gettext
|
|
|
|
USE_LIBTOOL = Yes
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --enable-clock \
|
|
--enable-outputs \
|
|
--enable-unicode \
|
|
--with-curl \
|
|
--with-iconv \
|
|
--with-taglib \
|
|
--without-fftw
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|