svn commit: r363920 - in head/net-p2p: transmission-cli transmission-gtk

John Marino marino at FreeBSD.org
Sun Aug 3 16:06:59 UTC 2014


Author: marino
Date: Sun Aug  3 16:06:58 2014
New Revision: 363920
URL: http://svnweb.freebsd.org/changeset/ports/363920
QAT: https://qat.redports.org/buildarchive/r363920/

Log:
  Fix transmission-cli,-gtk on some platforms after openssl update
  
  At least on some releases, transmission-cli and transmission-gtk now
  need -lcypto in LDFLAGS to build.  Additionally transmission-gtk needed
  an update of the inotify configure argument.  The latter requires a
  revbump because it seems possible that it could have been built with
  the bad argument somewhere.
  
  PR:		192319
  Submitted by:	Ivan Klymenko
  Approved by:	"Just Fix It" blanket, but maintainer was in copy on PR

Modified:
  head/net-p2p/transmission-cli/Makefile
  head/net-p2p/transmission-gtk/Makefile

Modified: head/net-p2p/transmission-cli/Makefile
==============================================================================
--- head/net-p2p/transmission-cli/Makefile	Sun Aug  3 16:06:22 2014	(r363919)
+++ head/net-p2p/transmission-cli/Makefile	Sun Aug  3 16:06:58 2014	(r363920)
@@ -42,7 +42,7 @@ USES+=		gmake pkgconfig iconv
 USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
+LDFLAGS+=	-L${LOCALBASE}/lib -lcrypto ${ICONV_LIB}
 CONFIGURE_ARGS=--with-zlib=/usr \
 		${EXTRA_CONF_ARGS}
 CONFIGURE_ENV+=	OPENSSL_LIBS=${OPENSSL_LDFLAGS}

Modified: head/net-p2p/transmission-gtk/Makefile
==============================================================================
--- head/net-p2p/transmission-gtk/Makefile	Sun Aug  3 16:06:22 2014	(r363919)
+++ head/net-p2p/transmission-gtk/Makefile	Sun Aug  3 16:06:58 2014	(r363920)
@@ -1,6 +1,7 @@
 # $FreeBSD$
 
 PKGNAMESUFFIX=	-gtk
+PORTREVISION=	2
 
 MAINTAINER=	crees at FreeBSD.org
 COMMENT=	Fast and lightweight GTK+2 BitTorrent client
@@ -24,7 +25,7 @@ INSTALLS_ICONS=	yes
 EXTRA_CONF_ARGS=--disable-cli \
 		--disable-daemon \
 		--with-gtk \
-		--enable-inotify \
+		--with-inotify \
 		--disable-mac \
 		--enable-nls
 


More information about the svn-ports-all mailing list