225 lines
6.3 KiB
Makefile
Executable File
225 lines
6.3 KiB
Makefile
Executable File
# $OpenBSD: Makefile,v 1.56 2011/04/25 10:02:43 ajacoutot Exp $
|
|
|
|
COMMENT-main= framework for Multicast DNS Service Discovery
|
|
COMMENT-gtk= GUI client utilities for avahi
|
|
COMMENT-mono= mono (.NET) bindings for avahi
|
|
COMMENT-qt3= qt3 bindings for avahi
|
|
COMMENT-qt4= qt4 bindings for avahi
|
|
|
|
V= 0.6.30
|
|
DISTNAME= avahi-${V}
|
|
CATEGORIES= net devel
|
|
|
|
PKGNAME-main= avahi-${V}
|
|
PKGNAME-gtk= avahi-gtk-${V}
|
|
PKGNAME-mono= mono-avahi-${V}
|
|
PKGNAME-qt3= avahi-qt3-${V}
|
|
PKGNAME-qt4= avahi-qt4-${V}
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
SHARED_LIBS += avahi-common 0.0 # .8.0
|
|
SHARED_LIBS += avahi-core 0.0 # .5.5
|
|
SHARED_LIBS += avahi-qt3 0.0 # .1.2
|
|
SHARED_LIBS += avahi-qt4 0.0 # .1.2
|
|
SHARED_LIBS += avahi-client 0.0 # .5.4
|
|
SHARED_LIBS += avahi-glib 0.0 # .1.1
|
|
SHARED_LIBS += avahi-gobject 0.0 # .0.1
|
|
SHARED_LIBS += howl 0.0 # .0.0
|
|
SHARED_LIBS += avahi-ui 0.0 # .1.0
|
|
SHARED_LIBS += dns_sd 0.0 # .1.0
|
|
|
|
HOMEPAGE= http://www.avahi.org/
|
|
|
|
# LGPLv2.1
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/download/
|
|
|
|
PSEUDO_FLAVORS= no_gtk no_mono no_qt3 no_qt4
|
|
FLAVOR?= no_gtk no_mono no_qt3 no_qt4
|
|
|
|
MULTI_PACKAGES= -main
|
|
|
|
MODULES= devel/gettext \
|
|
textproc/intltool
|
|
|
|
USE_GROFF = Yes
|
|
|
|
BUILD_DEPENDS= converters/xmltoman \
|
|
devel/gobject-introspection
|
|
|
|
WANTLIB-main= c expat glib-2.0 gobject-2.0 pcre pthread \
|
|
gthread-2.0 gdbm daemon dbus-1 \
|
|
${MODGETTEXT_WANTLIB}
|
|
LIB_DEPENDS-main= ${MODGETTEXT_LIB_DEPENDS} \
|
|
devel/glib2 \
|
|
databases/gdbm \
|
|
devel/libdaemon>=0.14 \
|
|
x11/dbus
|
|
|
|
# keep in sync with lang/mono/mono.port.mk
|
|
ONLY_FOR_ARCHS-mono = i386 amd64
|
|
|
|
BUILD_MONO = No
|
|
.if !${FLAVOR:L:Mno_mono}
|
|
MULTI_PACKAGES+= -mono
|
|
. for _a in ${MACHINE_ARCH} ${ARCH}
|
|
. if ${ONLY_FOR_ARCHS-mono:M${_a}}
|
|
BUILD_MONO = Yes
|
|
. endif
|
|
. endfor
|
|
.endif
|
|
|
|
.if ${BUILD_MONO:L} == "yes"
|
|
MODULES+= lang/mono
|
|
BUILD_DEPENDS+= ${MODMONO_BUILD_DEPENDS} \
|
|
x11/mono-gtk2
|
|
RUN_DEPENDS-mono= ${MODMONO_RUN_DEPENDS} \
|
|
net/avahi,-gtk,no_qt3,no_qt4 \
|
|
x11/mono-gtk2
|
|
LIB_DEPENDS-mono= # empty
|
|
WANTLIB-mono= # empty
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-mono \
|
|
--disable-monodoc
|
|
.endif
|
|
|
|
.if !${FLAVOR:L:Mno_gtk} || ${BUILD_MONO:L} == "yes"
|
|
MULTI_PACKAGES+= -gtk
|
|
MODULES+= lang/python
|
|
BUILD_DEPENDS+= lang/python/${MODPY_VERSION},-gdbm \
|
|
x11/py-gtk2 \
|
|
x11/dbus-python
|
|
LIB_DEPENDS-gtk= ${MODGETTEXT_LIB_DEPENDS} \
|
|
net/avahi
|
|
RUN_DEPENDS-gtk= ${MODPY_RUN_DEPENDS} \
|
|
lang/python/${MODPY_VERSION},-gdbm \
|
|
x11/py-gtk2 \
|
|
x11/dbus-python \
|
|
devel/py-twisted/web \
|
|
devel/desktop-file-utils
|
|
WANTLIB-gtk= X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes \
|
|
Xi Xinerama Xrandr Xrender atk-1.0 c cairo dbus-1 \
|
|
expat fontconfig freetype gdbm gdk-x11-2.0 gthread-2.0 \
|
|
gdk_pixbuf-2.0 gio-2.0 glib-2.0 gmodule-2.0 \
|
|
gobject-2.0 gtk-x11-2.0 m pango-1.0 pangocairo-1.0 \
|
|
pangoft2-1.0 pcre pixman-1 png pthread pthread-stubs xcb z \
|
|
xcb-render avahi-client avahi-common GL Xxf86vm drm xcb-shm \
|
|
avahi-core avahi-glib ${MODGETTEXT_WANTLIB}
|
|
.else
|
|
CONFIGURE_ARGS+= -disable-gtk \
|
|
--disable-python \
|
|
--disable-pygtk \
|
|
--disable-python-dbus
|
|
.endif
|
|
|
|
.if !${FLAVOR:L:Mno_qt3}
|
|
MULTI_PACKAGES+= -qt3
|
|
MODULES+= x11/qt3
|
|
LIB_DEPENDS-qt3= ${MODGETTEXT_LIB_DEPENDS} \
|
|
${MODQT3_LIB_DEPENDS} \
|
|
net/avahi
|
|
WANTLIB-qt3= GL ICE SM X11 Xau Xcursor Xdmcp Xext Xfixes Xft Xi \
|
|
Xinerama Xmu Xrandr Xrender Xt expat fontconfig \
|
|
freetype jpeg lcms m mng png pthread-stubs xcb z \
|
|
avahi-common stdc++ ${MODQT3_WANTLIB} ${MODGETTEXT_WANTLIB} \
|
|
Xdamage Xxf86vm drm
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-qt3
|
|
.endif
|
|
|
|
.if !${FLAVOR:L:Mno_qt4}
|
|
MULTI_PACKAGES+= -qt4
|
|
MODULES+= x11/qt4
|
|
LIB_DEPENDS-qt4= ${MODGETTEXT_LIB_DEPENDS} \
|
|
x11/qt4 \
|
|
net/avahi
|
|
WANTLIB-qt4= QtCore avahi-common m stdc++ ${MODGETTEXT_WANTLIB} \
|
|
glib-2.0 gthread-2.0 pcre z
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-qt4
|
|
.endif
|
|
|
|
USE_GMAKE= Yes
|
|
USE_LIBTOOL= Yes
|
|
|
|
MODPY_RUNDEP= No
|
|
MODMONO_DEPS= No
|
|
|
|
AUTOCONF_VERSION= 2.63
|
|
|
|
CONFIGURE_STYLE=autoconf no-autoheader
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
|
PTHREAD_CFLAGS="-pthread" \
|
|
PTHREAD_LIBS="-pthread" \
|
|
PYTHON="${MODPY_BIN}"
|
|
CONFIGURE_ARGS+=${CONFIGURE_SHARED} \
|
|
--localstatedir="/var" \
|
|
--with-dbus-sys="${SYSCONFDIR}/dbus-1/" \
|
|
--with-avahi-user=_avahi \
|
|
--with-avahi-group=_avahi \
|
|
--with-avahi-priv-access-group=wheel \
|
|
--with-autoipd-user=_avahi-autoipd \
|
|
--with-autoipd-group=_avahi-autoipd \
|
|
--with-xml=expat \
|
|
--with-distro=openbsd \
|
|
--enable-compat-howl \
|
|
--enable-compat-libdns_sd \
|
|
--enable-core-docs \
|
|
--enable-tests \
|
|
--enable-introspection \
|
|
--disable-silent-rules \
|
|
--disable-doxygen-doc \
|
|
--disable-doxygen-dot \
|
|
--disable-doxygen-xml \
|
|
--disable-doxygen-html \
|
|
--disable-gtk3
|
|
|
|
# don't link with libssp from the gcc4 port
|
|
# __guard and __stack_smash_handler are part of libc
|
|
CONFIGURE_ARGS+=--disable-stack-protector
|
|
|
|
# XXX
|
|
CONFIGURE_ARGS+=--disable-autoipd
|
|
|
|
FAKE_FLAGS= SYSCONFDIR=${SYSCONFDIR}
|
|
|
|
PC_FILES= avahi-ui.pc avahi-client.pc avahi-compat-howl.pc \
|
|
avahi-compat-libdns_sd.pc avahi-core.pc avahi-glib.pc \
|
|
avahi-gobject.pc avahi-qt3.pc avahi-qt4.pc
|
|
|
|
post-extract:
|
|
find ${WRKDIR} -type d -name PaxHeaders.\* | \
|
|
xargs rm -r
|
|
|
|
pre-configure:
|
|
find ${WRKSRC} -name Makefile.in -exec \
|
|
perl -pi -e 's,LIBINTL,INTLLIBS,g;' \
|
|
-e 's,LIBICONV,LTLIBICONV,g' {} \;
|
|
find ${WRKSRC}/man -type f | xargs \
|
|
perl -pi -e 's,/etc/avahi,${SYSCONFDIR}/avahi,g'
|
|
perl -pi -e 's,dbus_connection_disconnect,dbus_connection_close,g' \
|
|
${WRKSRC}/avahi-client/client.c \
|
|
${WRKSRC}/avahi-daemon/dbus-protocol.c
|
|
perl -pi -e 's,-ldl,,g' ${WRKSRC}/configure \
|
|
${WRKSRC}/avahi-client/Makefile.in \
|
|
${WRKSRC}/avahi-daemon/Makefile.in
|
|
for i in ${PC_FILES}; do \
|
|
perl -pi -e 's,Libs:,Libs: -pthread,;' \
|
|
-e 's,Cflags:,Cflags: -pthread,' ${WRKSRC}/$${i}.in; done
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples
|
|
mv ${WRKINST}${SYSCONFDIR}/dbus-1 ${PREFIX}/share/examples/
|
|
mv ${WRKINST}${SYSCONFDIR}/avahi ${PREFIX}/share/examples/
|
|
# XXX DLLMAP_FILES won't work here since the files are generated during the build process
|
|
find ${PREFIX} -name avahi-sharp.dll.config -or -name avahi-ui-sharp.dll.config | \
|
|
xargs perl -pi -e 's,\.so(\.[0-9])+,\.so,g'
|
|
|
|
.include <bsd.port.mk>
|