diff options
Diffstat (limited to 'sys-apps/dbus/dbus-0.60-r4.ebuild')
-rw-r--r-- | sys-apps/dbus/dbus-0.60-r4.ebuild | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/sys-apps/dbus/dbus-0.60-r4.ebuild b/sys-apps/dbus/dbus-0.60-r4.ebuild new file mode 100644 index 000000000000..96f4e3e2de8a --- /dev/null +++ b/sys-apps/dbus/dbus-0.60-r4.ebuild @@ -0,0 +1,159 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-0.60-r4.ebuild,v 1.1 2006/02/01 17:32:41 cardoe Exp $ + +inherit eutils mono python multilib debug qt3 autotools toolchain-funcs + +DESCRIPTION="A message bus system, a simple way for applications to talk to each other" +HOMEPAGE="http://dbus.freedesktop.org/" +SRC_URI="http://dbus.freedesktop.org/releases/${P}.tar.gz" + +SLOT="0" +LICENSE="|| ( GPL-2 AFL-2.1 )" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="doc gcj gtk mono python qt selinux X xml2" + +RDEPEND=">=dev-libs/glib-2.6 + X? ( || ( ( x11-libs/libXt x11-libs/libX11 ) virtual/x11 ) ) + gtk? ( >=x11-libs/gtk+-2.6 ) + mono? ( >=dev-lang/mono-0.95 ) + python? ( >=dev-lang/python-2.4 >=dev-python/pyrex-0.9.3-r2 ) + qt? ( $(qt_min_version 3.3) ) + selinux? ( sys-libs/libselinux ) + xml2? ( >=dev-libs/libxml2-2.6.21 ) + !xml2? ( dev-libs/expat )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( app-doc/doxygen + app-text/xmlto + mono? ( >=dev-util/monodoc-0.16 + >=dev-util/mono-tools-1.1.9 ) )" + +pkg_setup() { + if use gcj && ! built_with_use "=sys-devel/gcc-$(gcc-fullversion)*" gcj; then + eerror "To build the Java bindings for dbus, you must re-build gcc" + eerror "with the 'gcj' USE flag. Add 'gcj' to USE and re-emerge gcc." + die "gcc needs gcj support to use the java bindings" + fi + + PKG_CONFIG_PATH="${QTDIR}/lib/pkgconfig" +} + +src_unpack() { + unpack ${A} + cd ${S} + + # Fix gcj now with gcc4 support + epatch "${FILESDIR}"/${PN}-0.60-gcj-2.patch + # Fix QT + epatch "${FILESDIR}"/${PN}-0.60-qt.patch + # Fix .pc file for QT + epatch "${FILESDIR}"/${PN}-0.60-qt-pc.patch + # Fix Mono Docs + epatch "${FILESDIR}"/${PN}-0.60-mono-docs.patch + # Fix longlong on AMD64 + epatch "${FILESDIR}"/${PN}-0.60-qdbusmarshall.patch + # Fix sizeof() on AMD64 + epatch "${FILESDIR}"/${PN}-0.60--mono-arguments.patch + + eautoreconf +} + +src_compile() { + local myconf="" + + # Choose which xml library to use + if use xml2; then + myconf="${myconf} --with-xml=libxml" + else + myconf="${myconf} --with-xml=expat" + fi + + # Only enable mono-docs if both mono and doc is defined + use mono && myconf="${myconf} $(use_enable doc mono-docs)" + + if use qt; then + myconf="${myconf} --enable-qt3=${QTDIR} QT_MOC=/usr/bin/moc QT3_MOC=${QTDIR}/bin/moc" + else + myconf="${myconf} --disable-qt --disable-qt3" + fi + + econf \ + $(use_with X x) \ + $(use_enable gtk) \ + $(use_enable python) \ + $(use_enable mono) \ + $(use_enable kernel_linux dnotify) \ + $(use_enable gcj) \ + $(use_enable selinux) \ + $(use_enable debug verbose-mode) \ + $(use_enable debug checks) \ + $(use_enable debug asserts) \ + --enable-glib \ + --with-system-pid-file=/var/run/dbus.pid \ + --with-system-socket=/var/run/dbus/system_bus_socket \ + --with-session-socket-dir=/tmp \ + --with-dbus-user=messagebus \ + $(use_enable doc doxygen-docs) \ + --disable-xml-docs \ + ${myconf} \ + || die "econf failed" + + # Don't build the mono examples, they require gtk-sharp + touch ${S}/mono/example/{bus-listener,echo-{server,client}}.exe + + # after the compile, it uses a selinuxfs interface to + # check if the SELinux policy has the right support + use selinux && addwrite /selinux/access + + # for gcj support + emake -j1 || die "make failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + + # initscript + newinitd "${FILESDIR}"/dbus.init-0.60 dbus + + # dbus X session script (#77504) + # FIXME : turns out to only work for GDM, better solution needed + exeinto /etc/X11/xinit/xinitrc.d/ + doexe "${FILESDIR}"/30-dbus + + # needs to exist for the system socket + keepdir /var/run/dbus + + keepdir /usr/lib/dbus-1.0/services + keepdir /usr/share/dbus-1/services + + dodoc AUTHORS ChangeLog HACKING NEWS README doc/TODO + if use doc; then + dohtml doc/*html + fi +} + +pkg_preinst() { + enewgroup messagebus || die "Problem adding messagebus group" + enewuser messagebus -1 "-1" -1 messagebus || die "Problem adding messagebus user" +} + +pkg_postrm() { + python_mod_cleanup "${ROOT}"/usr/lib/python*/site-packages/dbus +} + +pkg_postinst() { + python_mod_optimize "${ROOT}"/usr/lib/python*/site-packages/dbus + + einfo "To start the DBUS system-wide messagebus by default" + einfo "you should add it to the default runlevel :" + einfo "\`rc-update add dbus default\`" + + ewarn + ewarn "There have been major ABI/API changes. This version will not" + ewarn "work with other packages. We are not responsible for a broken" + ewarn "system. The sonames have changed, so you must run a revdep-rebuild" + ewarn "afterwards to ensure that the packages dont die." + ewarn +} |