diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2016-01-19 10:00:25 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2016-01-19 10:00:25 +0000 |
commit | 13d74ef5927aea8e80c59756ec2cd0c61f171bca (patch) | |
tree | 46de96ca112674d0f22fd8eae3bf3cac9e860496 /net/libproxy-perl | |
parent | Modernize net/libproxy-python and fix dependencies. (diff) |
Update libproxy and its slave ports to 0.4.12.
After being dormant since 2013, libproxy development picked up some steam at
the end of last year, and the project moved from Google Code to GitHub,
where its releases are also being hosted. A summary of changes between 0.4.6
and 0.4.12 can be found here:
https://github.com/libproxy/libproxy/blob/0.4.12/NEWS
The libproxy ports themselves have undergone several changes too:
* net/libproxy
- Drop a lot of patches that are no longer necessary.
- Add a few patches that I have sent upstream, and add some context to the
0.4.6 patches that are still required.
- Explicitly disable a few build options (.NET bindings, for example).
- Switch to an out-of-source CMake build (also applies to the slave
ports).
- Drop the unnecessary post-install target, likely added before pkg and
our ports system got smart enough to remove directories when needed.
* net/libproxy-gnome
- Explicitly add dependency on devel/glib20 as the code links against
GObject.
- Make it clear that this plug-in targets GNOME2 desktops and uses GConf
to read proxy settings.
* net/libproxy-gnome3
- New port. Similar to libproxy-gnome, but targets GNOME3/Mate and reads
proxy settings via GSettings instead. libproxy-gnome retained its name
to avoid confusing users and requiring instructions in UPDATING.
* net/libproxy-kde
- The KDE configuration plug-in has been rewritten upstream and no longer
links against Qt or any KDE libraries. Instead, it just has a run-time
dependency on either kreadconfig (from KDE4) or kreadconfig5 (from KDE
Frameworks 5).
* net/libproxy-mozjs
- Resurrect the port; the plug-in has been rewritten and now uses
lang/spidermonkey185 to parse the JavaScript in .pac files.
* net/libproxy-webkit
- Switch to depending www/webkit-gtk3 instead of www/webkit-gtk2. In
practice, there is no huge difference since libproxy only uses the
JavaScriptCore layer (which is toolkit-independent) to parse .pac files.
Finally, thanks to mat@ for answering some questions about libproxy-perl and
which Perl patches still needed to be retained or rewritten.
Approved by: gnome (kwm)
Notes
Notes:
svn path=/head/; revision=406680
Diffstat (limited to 'net/libproxy-perl')
-rw-r--r-- | net/libproxy-perl/Makefile | 6 | ||||
-rw-r--r-- | net/libproxy-perl/pkg-plist | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/net/libproxy-perl/Makefile b/net/libproxy-perl/Makefile index 9e84f6272199..4d4dbae35c0f 100644 --- a/net/libproxy-perl/Makefile +++ b/net/libproxy-perl/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ # $MCom: ports/net/libproxy-perl/Makefile,v 1.1 2011/01/12 13:10:53 kwm Exp $ -PORTREVISION= 3 +PORTREVISION= 0 CATEGORIES= net lang PKGNAMESUFFIX= -perl @@ -14,8 +14,10 @@ LIB_DEPENDS= libproxy.so:${PORTSDIR}/net/libproxy MASTERDIR= ${.CURDIR}/../libproxy DESCR= ${.CURDIR}/pkg-descr PLIST= ${.CURDIR}/pkg-plist + +BUILD_WRKSRC= ${CONFIGURE_WRKSRC}/bindings/perl +INSTALL_WRKSRC= ${CONFIGURE_WRKSRC}/bindings/perl USES= perl5 -INSTALL_WRKSRC= ${WRKSRC}/bindings/perl LIBPROXY_SLAVE= perl diff --git a/net/libproxy-perl/pkg-plist b/net/libproxy-perl/pkg-plist index 30d6d60938d5..ab21782fbf98 100644 --- a/net/libproxy-perl/pkg-plist +++ b/net/libproxy-perl/pkg-plist @@ -1,3 +1,2 @@ %%SITE_ARCH%%/Net/Libproxy.pm %%SITE_ARCH%%/auto/Net/Libproxy/Libproxy.so -@dir lib/libproxy/%%VERSION%%/modules |