net-p2p/libtorrent-rasterbar: fix runtime of python binding

It was reported by many people that python binding fails to import after
updating to 1.1.1, breaking net-p2p/deluge runtime at least.
Bump PORTREVISION to initiate packages rebuild.

Fix is based on this commit:
https://github.com/voidlinux/void-packages/commit/e3a19958

PR:		213739
Reported by:	many
Approved by:	portmgr (just-fix-it blanket)
This commit is contained in:
Ruslan Makhmatkhanov 2016-10-25 22:42:38 +00:00
parent d17f126e64
commit 9844860e2d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424659
2 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= libtorrent-rasterbar
PORTVERSION= 1.1.1
PORTREVISION= 1
CATEGORIES?= net-p2p ipv6
MASTER_SITES= https://github.com/arvidn/libtorrent/releases/download/libtorrent-${PORTVERSION:S/./_/g}/

View File

@ -0,0 +1,5 @@
--- bindings/python/compile_flags.in.orig 2016-05-24 02:57:40 UTC
+++ bindings/python/compile_flags.in
@@ -1 +1 @@
--I@top_srcdir@/include @COMPILETIME_OPTIONS@ @CPPFLAGS@ @BOOST_CPPFLAGS@ @OPENSSL_INCLUDES@
+-I@top_srcdir@/include @COMPILETIME_OPTIONS@ @CPPFLAGS@ -std=c++11 @BOOST_CPPFLAGS@ @OPENSSL_INCLUDES@