svn commit: r498743 - head/net-im/libpurple

Joe Marcus Clarke marcus at FreeBSD.org
Fri Apr 12 20:39:44 UTC 2019


Author: marcus
Date: Fri Apr 12 20:39:43 2019
New Revision: 498743
URL: https://svnweb.freebsd.org/changeset/ports/498743

Log:
  Switch to using default Python only for DBUS file generation.
  
  PR:		237199
  Submitted by:	gahr

Modified:
  head/net-im/libpurple/Makefile

Modified: head/net-im/libpurple/Makefile
==============================================================================
--- head/net-im/libpurple/Makefile	Fri Apr 12 20:26:19 2019	(r498742)
+++ head/net-im/libpurple/Makefile	Fri Apr 12 20:39:43 2019	(r498743)
@@ -3,7 +3,7 @@
 
 PORTNAME?=	libpurple
 PORTVERSION=	2.13.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES?=	net-im
 MASTER_SITES=	SF/pidgin/Pidgin/${PORTVERSION}
 DISTNAME=	pidgin-${PORTVERSION}
@@ -24,7 +24,7 @@ INSTALL_TARGET=	install-strip
 .if !defined(PIDGIN_SLAVE)
 # Pidgin slave ports that require the following functionality, must explicitly
 # set these macros themselves.
-USES+=		iconv python:2.7 shebangfix
+USES+=		iconv shebangfix
 USE_LDCONFIG=	yes
 SHEBANG_FILES=	libpurple/purple-remote \
 		libpurple/purple-url-handler
@@ -206,11 +206,12 @@ CONFIGURE_ARGS+=	--disable-gtkspell
 .endif
 
 .if ${PORT_OPTIONS:MDBUS}
+USES+=			python
 LIB_DEPENDS+=		libdbus-glib-1.so:devel/dbus-glib
 .if !defined(PIDGIN_SLAVE)
 RUN_DEPENDS+=		${PYTHON_PKGNAMEPREFIX}dbus>=0:devel/py-dbus@${PY_FLAVOR}
 .endif
-CONFIGURE_ARGS+=	--enable-dbus
+CONFIGURE_ARGS+=	--enable-dbus --with-python=${PYTHON_CMD}
 PLIST_SUB+=		DBUS=""
 .else
 CONFIGURE_ARGS+=	--disable-dbus


More information about the svn-ports-head mailing list