Date: Mon, 25 Sep 2017 06:34:58 +0000 (UTC) From: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450573 - in head/audio/mixxx: . files Message-ID: <201709250634.v8P6Yw1n094030@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: acm Date: Mon Sep 25 06:34:58 2017 New Revision: 450573 URL: https://svnweb.freebsd.org/changeset/ports/450573 Log: - Add missing dependency - Take maintainership - Fix libmp3lame detection - Bump PORTREVISION Added: head/audio/mixxx/files/patch-src-encoder_encodermp3.cpp (contents, props changed) Modified: head/audio/mixxx/Makefile Modified: head/audio/mixxx/Makefile ============================================================================== --- head/audio/mixxx/Makefile Mon Sep 25 06:06:05 2017 (r450572) +++ head/audio/mixxx/Makefile Mon Sep 25 06:34:58 2017 (r450573) @@ -4,11 +4,11 @@ PORTNAME= mixxx PORTVERSION= 2.0.0 DISTVERSIONSUFFIX= -src -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= http://downloads.mixxx.org/${PORTNAME}-${PORTVERSION}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= acm@FreeBSD.org COMMENT= DJ mixing application LICENSE= GPLv2+ @@ -32,8 +32,8 @@ BROKEN_aarch64= fails to compile: Exception("invalid BROKEN_powerpc64= fails to configure: unmet dependencies: Could not find libprotobuf, libchromaprint, libmp4, and libwavpack USES= scons iconv pkgconfig -USE_QT4= corelib gui network opengl script scripttools sql svg \ - testlib xml xmlpatterns linguisttools_build moc_build \ +USE_QT4= corelib gui network opengl script scripttools sql sql-sqlite3 \ + svg testlib xml xmlpatterns linguisttools_build moc_build \ qmake_build rcc_build uic_build USE_GL= gl glu MAKE_ARGS= qtdir="${PREFIX}" install_root="${PREFIX}" \ Added: head/audio/mixxx/files/patch-src-encoder_encodermp3.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mixxx/files/patch-src-encoder_encodermp3.cpp Mon Sep 25 06:34:58 2017 (r450573) @@ -0,0 +1,11 @@ +--- src/encoder/encodermp3.cpp 2017-09-24 22:09:28.258505000 -0500 ++++ src/encoder/encodermp3.cpp 2017-09-24 22:12:09.197474000 -0500 +@@ -76,7 +76,7 @@ + */ + QStringList libnames; + QString libname = ""; +-#ifdef __LINUX__ ++#if defined(__LINUX__) || defined(__FreeBSD__) + libnames << "mp3lame"; + #elif __WINDOWS__ + libnames << "lame_enc.dll";
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709250634.v8P6Yw1n094030>