diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-06-28 01:20:58 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-06-28 01:20:58 +0800 |
commit | 897c307d2ca1070f3d06469ce5d474227c86baac (patch) | |
tree | ce8eb5d19b5d35193c066201ffe658b77c9b2f3f /devel/gnome-vfs | |
parent | cc1c1ee415919ba1e5e45fc9a9bb5f6f921674e2 (diff) | |
download | marcuscom-ports-897c307d2ca1070f3d06469ce5d474227c86baac.tar marcuscom-ports-897c307d2ca1070f3d06469ce5d474227c86baac.tar.gz marcuscom-ports-897c307d2ca1070f3d06469ce5d474227c86baac.tar.bz2 marcuscom-ports-897c307d2ca1070f3d06469ce5d474227c86baac.tar.lz marcuscom-ports-897c307d2ca1070f3d06469ce5d474227c86baac.tar.xz marcuscom-ports-897c307d2ca1070f3d06469ce5d474227c86baac.tar.zst marcuscom-ports-897c307d2ca1070f3d06469ce5d474227c86baac.zip |
Add optional howl support for multicast DNS, and enable it by default when
package building on i386.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2413 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gnome-vfs')
-rw-r--r-- | devel/gnome-vfs/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/devel/gnome-vfs/Makefile b/devel/gnome-vfs/Makefile index 8e415789a..acb9f700b 100644 --- a/devel/gnome-vfs/Makefile +++ b/devel/gnome-vfs/Makefile @@ -40,10 +40,12 @@ OPTIONS= KDE_MENUS "Integrated KDE menu picks" on .if defined(PACKAGE_BUILDING) || defined(PARALLEL_PACKAGE_BUILD) .undef WITHOUT_CDPARANOIA .undef WITHOUT_SAMBA -#.undef WITHOUT_MDNS +.if ${ARCH} == "i386" +.undef WITHOUT_MDNS +WITH_MDNS= yes +.endif WITH_CDPARANOIA= yes WITH_SAMBA= yes -#WITH_MDNS= yes .endif .if !defined(WITHOUT_KDE_MENUS) @@ -61,9 +63,9 @@ WITH_CDPARANOIA= yes WITH_SAMBA= yes .endif -#.if exists(${LOCALBASE}/lib/libhowl.so) -#WITH_MDNS= yes -#.endif +.if exists(${LOCALBASE}/lib/libhowl.so) +WITH_MDNS= yes +.endif .if defined(WITH_CDPARANOIA) LIB_DEPENDS+= cdda_paranoia.0:${PORTSDIR}/audio/cdparanoia @@ -83,9 +85,9 @@ PLIST_SUB+= SAMBA="" PLIST_SUB+= SAMBA="@comment " .endif -#.if defined(WITH_MDNS) -#LIB_DEPENDS+= howl:${PORTSDIR}/net/howl -#.endif +.if defined(WITH_MDNS) +LIB_DEPENDS+= howl:${PORTSDIR}/net/howl +.endif post-patch: @${FIND} ${WRKSRC} -name "*info.in" | ${XARGS} ${REINPLACE_CMD} -e \ |