FreeBSD Port: audacious-plugins-1.5.0_2

E. J. Cerejo ecerejo at optonline.net
Thu Apr 10 20:53:33 UTC 2008


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


More information about the freebsd-ports mailing list