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
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"