Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Apr 2008 16:22:20 -0400
From:      "E. J. Cerejo" <ecerejo@optonline.net>
To:        oliver@FreeBSD.org
Cc:        ports@FreeBSD.org
Subject:   FreeBSD Port: audacious-plugins-1.5.0_2
Message-ID:  <47FE76FC.90408@optonline.net>

next in thread | raw e-mail | index | archive | help
When you choose to build with MTP support, this port fails because it 
looks for mtp.6 (libmtp.so.6), the current libmtp port installs mtp.8 
(libmtp.so.8), the port installs fine when I change the Makefile from:

.if defined(WITH_MTP)
LIB_DEPENDS+=    mtp.6:${PORTSDIR}/audio/libmtp
CONFIGURE_ARGS+=--enable-mtp_up
PLIST_SUB+=    MTPPLUGIN=""
.else
CONFIGURE_ARGS+=--disable-mtp_up
PLIST_SUB+=    MTPPLUGIN="@comment "
.endif

To:

.if defined(WITH_MTP)
LIB_DEPENDS+=    mtp.8:${PORTSDIR}/audio/libmtp
CONFIGURE_ARGS+=--enable-mtp_up
PLIST_SUB+=    MTPPLUGIN=""
.else
CONFIGURE_ARGS+=--disable-mtp_up
PLIST_SUB+=    MTPPLUGIN="@comment "
.endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?47FE76FC.90408>