diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-03-14 01:23:20 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-03-14 01:23:20 +0800 |
commit | cab21831e7d85f2fae2e418c367d1b8a08835075 (patch) | |
tree | 56fa5158373cf9a90fc387d47024a6041a7262d0 /net/avahi | |
parent | 5cfe3b0e41fad2b8d3d478e2db0be8a0577824ec (diff) | |
download | marcuscom-ports-cab21831e7d85f2fae2e418c367d1b8a08835075.tar marcuscom-ports-cab21831e7d85f2fae2e418c367d1b8a08835075.tar.gz marcuscom-ports-cab21831e7d85f2fae2e418c367d1b8a08835075.tar.bz2 marcuscom-ports-cab21831e7d85f2fae2e418c367d1b8a08835075.tar.lz marcuscom-ports-cab21831e7d85f2fae2e418c367d1b8a08835075.tar.xz marcuscom-ports-cab21831e7d85f2fae2e418c367d1b8a08835075.tar.zst marcuscom-ports-cab21831e7d85f2fae2e418c367d1b8a08835075.zip |
Update to 0.6.29.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15463 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net/avahi')
-rw-r--r-- | net/avahi/Makefile | 65 | ||||
-rw-r--r-- | net/avahi/pkg-descr | 7 |
2 files changed, 72 insertions, 0 deletions
diff --git a/net/avahi/Makefile b/net/avahi/Makefile new file mode 100644 index 000000000..ddf5cb054 --- /dev/null +++ b/net/avahi/Makefile @@ -0,0 +1,65 @@ +# New ports collection makefile for: avahi +# Date created: 18 November 2005 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD: ports/net/avahi/Makefile,v 1.61 2010/11/20 15:36:48 kwm Exp $ +# $MCom: ports/net/avahi/Makefile,v 1.28 2010/10/23 20:58:28 marcus Exp $ +# + +PORTNAME= avahi +PORTVERSION= 0.6.29 +PORTREVISION?= 0 +CATEGORIES?= net dns +MASTER_SITES= # empty +DISTFILES= # empty +EXTRACT_ONLY= # empty + +MAINTAINER= gnome@FreeBSD.org +COMMENT= The "meta-port" for the Avahi service discovery suite + +RUN_DEPENDS= avahi-resolve:${PORTSDIR}/net/avahi-app \ + avahi-app>=0.6.20_2:${PORTSDIR}/net/avahi-app + +OPTIONS= AUTOIPD "IPv4LL network address configuration daemon" off \ + GTK "Gtk+ tools and bindings" off \ + LIBDNS "Apple's mDNSResponder compatibility library" off \ + MONO "Mono bindings" off \ + QT3 "Qt 3 bindings" off \ + QT4 "Qt 4 bindings" off \ + PYTHON "Python bindings and tools" off + +NO_BUILD= yes + +.include <bsd.port.pre.mk> + +.if defined(WITH_AUTOIPD) +RUN_DEPENDS+= avahi-autoipd:${PORTSDIR}/net/avahi-autoipd +.endif + +.if defined(WITH_GTK) +RUN_DEPENDS+= avahi-discover-standalone:${PORTSDIR}/net/avahi-gtk +.endif + +.if defined(WITH_LIBDNS) +RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/avahi-compat-libdns_sd.pc:${PORTSDIR}/net/avahi-libdns +.endif + +.if defined(WITH_MONO) +RUN_DEPENDS+= ${LOCALBASE}/lib/mono/avahi-sharp/avahi-sharp.dll:${PORTSDIR}/net/avahi-sharp +.endif + +.if defined(WITH_QT3) +RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/avahi-qt3.pc:${PORTSDIR}/net/avahi-qt3 +.endif + +.if defined(WITH_QT4) +RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/avahi-qt4.pc:${PORTSDIR}/net/avahi-qt4 +.endif + +.if defined(WITH_PYTHON) +RUN_DEPENDS+= avahi-bookmarks:${PORTSDIR}/net/py-avahi +.endif + +do-install: + +.include <bsd.port.post.mk> diff --git a/net/avahi/pkg-descr b/net/avahi/pkg-descr new file mode 100644 index 000000000..fb85b6205 --- /dev/null +++ b/net/avahi/pkg-descr @@ -0,0 +1,7 @@ +Service discovery on a local network -- this means that you can plug your +laptop or computer into a network and instantly be able to view other people +who you can chat with, find printers to print to or find files being shared. +This kind of technology is already found in MacOS X (branded 'Rendezvous', +'Bonjour' and sometimes 'ZeroConf') and is very convenient. + +WWW: http://www.avahi.org/ |