diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-06-07 01:50:29 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-06-07 01:50:29 +0800 |
commit | c55d2246781d967419b45bb76f83e460f683cb73 (patch) | |
tree | 3b5bef90c30c2b48c322258c387baf6999b5a598 /devel | |
parent | 539d04174a3c65e891c26b3cdacee7932206aae1 (diff) | |
download | marcuscom-ports-c55d2246781d967419b45bb76f83e460f683cb73.tar marcuscom-ports-c55d2246781d967419b45bb76f83e460f683cb73.tar.gz marcuscom-ports-c55d2246781d967419b45bb76f83e460f683cb73.tar.bz2 marcuscom-ports-c55d2246781d967419b45bb76f83e460f683cb73.tar.lz marcuscom-ports-c55d2246781d967419b45bb76f83e460f683cb73.tar.xz marcuscom-ports-c55d2246781d967419b45bb76f83e460f683cb73.tar.zst marcuscom-ports-c55d2246781d967419b45bb76f83e460f683cb73.zip |
Remove the gnutls depend, it moved to glib-networking.
remove some comment code in libsoup-gnome.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@16036 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libsoup-gnome/Makefile | 22 | ||||
-rw-r--r-- | devel/libsoup-gnome/pkg-descr | 16 | ||||
-rw-r--r-- | devel/libsoup-gnome/pkg-plist | 10 | ||||
-rw-r--r-- | devel/libsoup/Makefile | 16 |
4 files changed, 50 insertions, 14 deletions
diff --git a/devel/libsoup-gnome/Makefile b/devel/libsoup-gnome/Makefile new file mode 100644 index 000000000..e7dd27dd9 --- /dev/null +++ b/devel/libsoup-gnome/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: libgsf +# Date created: 11 September 2002 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/devel/libsoup-gnome/Makefile,v 1.1 2010/06/05 21:11:10 kwm Exp $ +# + +PORTREVISION= 1 +CATEGORIES= devel gnome +PKGNAMESUFFIX= -gnome + +MAINTAINER= gnome@FreeBSD.org +COMMENT= A GNOME wrapper for libsoup + +MASTERDIR= ${.CURDIR}/../libsoup +DESCR= ${.CURDIR}/pkg-descr +PLIST= ${.CURDIR}/pkg-plist + +SOUP_SLAVE= yes + +.include "${MASTERDIR}/Makefile" diff --git a/devel/libsoup-gnome/pkg-descr b/devel/libsoup-gnome/pkg-descr new file mode 100644 index 000000000..1ec2bfea4 --- /dev/null +++ b/devel/libsoup-gnome/pkg-descr @@ -0,0 +1,16 @@ +Soup is a SOAP (Simple Object Access Protocol) implementation in C. + +It provides a queued asynchronous callback-based mechanism for sending and +servicing SOAP requests, and a WSDL (Web Service Definition Language) for C +compilers which generates client stubs and server skeletons for easily +calling and implementing SOAP methods. It uses GLib and is designed to work +well with GTK applications. + +Features: + * Completely Asynchronous + * Connection cache + * HTTP chunked transfer and persistent connections + * Authenticated HTTP, SOCKS4, and SOCKS5 proxy support + * SSL Support using OpenSSL + * Apache module server support + * Client digest authentication diff --git a/devel/libsoup-gnome/pkg-plist b/devel/libsoup-gnome/pkg-plist new file mode 100644 index 000000000..500adeb16 --- /dev/null +++ b/devel/libsoup-gnome/pkg-plist @@ -0,0 +1,10 @@ +include/libsoup-gnome-%%VERSION%%/libsoup/soup-cookie-jar-sqlite.h +include/libsoup-gnome-%%VERSION%%/libsoup/soup-gnome-features.h +include/libsoup-gnome-%%VERSION%%/libsoup/soup-gnome.h +lib/libsoup-gnome-%%VERSION%%.a +lib/libsoup-gnome-%%VERSION%%.la +lib/libsoup-gnome-%%VERSION%%.so +lib/libsoup-gnome-%%VERSION%%.so.1 +libdata/pkgconfig/libsoup-gnome-%%VERSION%%.pc +@dirrm include/libsoup-gnome-%%VERSION%%/libsoup +@dirrm include/libsoup-gnome-%%VERSION%% diff --git a/devel/libsoup/Makefile b/devel/libsoup/Makefile index 8529a4d99..2b61e5713 100644 --- a/devel/libsoup/Makefile +++ b/devel/libsoup/Makefile @@ -3,12 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/devel/libsoup/Makefile,v 1.100 2011/04/27 11:59:04 kwm Exp $ +# $MCom: ports/devel/libsoup/Makefile,v 1.101 2011/05/25 15:58:52 kwm Exp $ # PORTNAME= libsoup PORTVERSION= 2.34.2 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -46,18 +46,6 @@ BUILD_DEPENDS+= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection CONFIGURE_ARGS+=--without-gnome .endif -.if !defined(WITHOUT_SSL) -LIB_DEPENDS+= gnutls.40:${PORTSDIR}/security/gnutls -.else -CONFIGURE_ARGS+=--disable-ssl -.endif - -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} "libsoup has the following configurable option(s):" - @${ECHO_MSG} " WITHOUT_SSL Disable GnuTLS SSL support" - @${ECHO_MSG} "" - post-patch: @${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \ ${WRKSRC}/configure |