summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2010-05-16 10:49:41 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2010-05-16 10:49:41 +0000
commit3842594529f0ce8f0ac832f3f3d5e6a5129a7a75 (patch)
tree400e0fa711e8aa02f8f331356f7b8d8b8aa5b112 /dev-libs/dbus-glib
parentFix intltool rules, bug #319051. (diff)
downloadgentoo-2-3842594529f0ce8f0ac832f3f3d5e6a5129a7a75.tar.gz
gentoo-2-3842594529f0ce8f0ac832f3f3d5e6a5129a7a75.tar.bz2
gentoo-2-3842594529f0ce8f0ac832f3f3d5e6a5129a7a75.zip
Clean up old revisions.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/dbus-glib')
-rw-r--r--dev-libs/dbus-glib/ChangeLog7
-rw-r--r--dev-libs/dbus-glib/dbus-glib-0.76.ebuild61
-rw-r--r--dev-libs/dbus-glib/dbus-glib-0.84.ebuild92
-rw-r--r--dev-libs/dbus-glib/files/dbus-glib-introspection.patch78
4 files changed, 6 insertions, 232 deletions
diff --git a/dev-libs/dbus-glib/ChangeLog b/dev-libs/dbus-glib/ChangeLog
index 1dd0ee570333..b8376da7d689 100644
--- a/dev-libs/dbus-glib/ChangeLog
+++ b/dev-libs/dbus-glib/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/dbus-glib
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v 1.60 2010/05/15 16:47:41 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v 1.61 2010/05/16 10:49:41 eva Exp $
+
+ 16 May 2010; Gilles Dartiguelongue <eva@gentoo.org>
+ -dbus-glib-0.76.ebuild, -dbus-glib-0.84.ebuild,
+ -files/dbus-glib-introspection.patch:
+ Clean up old revisions.
15 May 2010; Raúl Porcel <armin76@gentoo.org> dbus-glib-0.82-r1.ebuild:
alpha/ia64/s390/sh/sparc stable wrt #310705
diff --git a/dev-libs/dbus-glib/dbus-glib-0.76.ebuild b/dev-libs/dbus-glib/dbus-glib-0.76.ebuild
deleted file mode 100644
index 65d2a8621ec8..000000000000
--- a/dev-libs/dbus-glib/dbus-glib-0.76.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.76.ebuild,v 1.8 2009/03/30 15:38:03 armin76 Exp $
-
-inherit eutils multilib autotools
-
-DESCRIPTION="D-Bus bindings for glib"
-HOMEPAGE="http://dbus.freedesktop.org/"
-SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 AFL-2.1 )"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE="doc selinux debug"
-
-RDEPEND=">=sys-apps/dbus-1.1.0
- >=dev-libs/glib-2.6
- selinux? ( sys-libs/libselinux )
- >=dev-libs/libxml2-2.6.21"
- # expat code now sucks.. libxml2 is the default
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- doc? ( app-doc/doxygen app-text/xmlto )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-introspection.patch
-}
-
-src_compile() {
- local myconf=""
-
- econf \
- $(use_enable selinux) \
- $(use_enable debug verbose-mode) \
- $(use_enable debug checks) \
- $(use_enable debug asserts) \
- --with-xml=libxml \
- --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 \
- --localstatedir=/var \
- $(use_enable doc doxygen-docs) \
- --disable-xml-docs \
- ${myconf} \
- || die "econf failed"
-
- # after the compile, it uses a selinuxfs interface to
- # check if the SELinux policy has the right support
- use selinux && addwrite /selinux/access
-
- emake || die "make failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
-
- dodoc AUTHORS ChangeLog HACKING NEWS README
-}
diff --git a/dev-libs/dbus-glib/dbus-glib-0.84.ebuild b/dev-libs/dbus-glib/dbus-glib-0.84.ebuild
deleted file mode 100644
index 5c2546d3fc39..000000000000
--- a/dev-libs/dbus-glib/dbus-glib-0.84.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.84.ebuild,v 1.2 2010/04/07 04:22:40 darkside Exp $
-
-EAPI="2"
-
-inherit bash-completion
-
-DESCRIPTION="D-Bus bindings for glib"
-HOMEPAGE="http://dbus.freedesktop.org/"
-SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 AFL-2.1 )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="bash-completion debug doc test"
-
-RDEPEND=">=sys-apps/dbus-1.1
- >=dev-libs/glib-2.10
- >=dev-libs/expat-1.95.8"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- sys-devel/gettext
- doc? (
- app-doc/doxygen
- app-text/xmlto
- >=dev-util/gtk-doc-1.4 )"
-
-# out of sources build directory
-BD=${WORKDIR}/${P}-build
-# out of sources build dir for make check
-TBD=${WORKDIR}/${P}-tests-build
-
-BASHCOMPLETION_NAME="dbus"
-
-src_configure() {
- local my_conf
-
- my_conf="--localstatedir=/var
- $(use_enable bash-completion)
- $(use_enable debug verbose-mode)
- $(use_enable debug asserts)
- $(use_enable doc doxygen-docs)
- $(use_enable doc gtk-doc)"
-
- mkdir "${BD}"
- cd "${BD}"
- einfo "Running configure in ${BD}"
- ECONF_SOURCE="${S}" econf ${my_conf}
-
- if use test; then
- mkdir "${TBD}"
- cd "${TBD}"
- einfo "Running configure in ${TBD}"
- ECONF_SOURCE="${S}" econf \
- ${my_conf} \
- $(use_enable test checks) \
- $(use_enable test tests) \
- $(use_enable test asserts) \
- $(use_with test test-socket-dir "${T}"/dbus-test-socket)
- fi
-}
-
-src_compile() {
- cd "${BD}"
- einfo "Running make in ${BD}"
- emake || die "make failed"
-
- if use test; then
- cd "${TBD}"
- einfo "Running make in ${TBD}"
- emake || die "make failed"
- fi
-}
-
-src_test() {
- cd "${TBD}"
- emake check || die "make check failed"
-}
-
-src_install() {
- dodoc AUTHORS ChangeLog HACKING NEWS README || die "dodoc failed."
-
- cd "${BD}"
- emake DESTDIR="${D}" install || die "make install failed"
-
- # FIXME: We need --with-bash-completion-dir
- if use bash-completion ; then
- dobashcompletion "${D}"/etc/bash_completion.d/dbus-bash-completion.sh
- rm -rf "${D}"/etc/bash_completion.d || die "rm failed"
- fi
-}
diff --git a/dev-libs/dbus-glib/files/dbus-glib-introspection.patch b/dev-libs/dbus-glib/files/dbus-glib-introspection.patch
deleted file mode 100644
index 4e65bda388c8..000000000000
--- a/dev-libs/dbus-glib/files/dbus-glib-introspection.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-diff -Npru dbus-glib-0.71-orig/tools/dbus-bus-introspect.xml dbus-glib-0.71/tools/dbus-bus-introspect.xml
---- tools/dbus-bus-introspect.xml 1969-12-31 17:00:00.000000000 -0700
-+++ tools/dbus-bus-introspect.xml 2006-07-24 14:32:01.000000000 -0600
-@@ -0,0 +1,74 @@
-+ <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
-+"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
-+<node>
-+ <interface name="org.freedesktop.DBus.Introspectable">
-+ <method name="Introspect">
-+ <arg name="data" direction="out" type="s"/>
-+ </method>
-+ </interface>
-+ <interface name="org.freedesktop.DBus">
-+ <method name="RequestName">
-+ <arg direction="in" type="s"/>
-+ <arg direction="in" type="u"/>
-+ <arg direction="out" type="u"/>
-+ </method>
-+ <method name="ReleaseName">
-+ <arg direction="in" type="s"/>
-+ <arg direction="out" type="u"/>
-+ </method>
-+ <method name="StartServiceByName">
-+ <arg direction="in" type="s"/>
-+ <arg direction="in" type="u"/>
-+ <arg direction="out" type="u"/>
-+ </method>
-+ <method name="Hello">
-+ <arg direction="out" type="s"/>
-+ </method>
-+ <method name="NameHasOwner">
-+ <arg direction="in" type="s"/>
-+ <arg direction="out" type="b"/>
-+ </method>
-+ <method name="ListNames">
-+ <arg direction="out" type="as"/>
-+ </method>
-+ <method name="AddMatch">
-+ <arg direction="in" type="s"/>
-+ </method>
-+ <method name="RemoveMatch">
-+ <arg direction="in" type="s"/>
-+ </method>
-+ <method name="GetNameOwner">
-+ <arg direction="in" type="s"/>
-+ <arg direction="out" type="s"/>
-+ </method>
-+ <method name="ListQueuedOwners">
-+ <arg direction="in" type="s"/>
-+ <arg direction="out" type="as"/>
-+ </method>
-+ <method name="GetConnectionUnixUser">
-+ <arg direction="in" type="s"/>
-+ <arg direction="out" type="u"/>
-+ </method>
-+ <method name="GetConnectionUnixProcessID">
-+ <arg direction="in" type="s"/>
-+ <arg direction="out" type="u"/>
-+ </method>
-+ <method name="GetConnectionSELinuxSecurityContext">
-+ <arg direction="in" type="s"/>
-+ <arg direction="out" type="ay"/>
-+ </method>
-+ <method name="ReloadConfig">
-+ </method>
-+ <signal name="NameOwnerChanged">
-+ <arg type="s"/>
-+ <arg type="s"/>
-+ <arg type="s"/>
-+ </signal>
-+ <signal name="NameLost">
-+ <arg type="s"/>
-+ </signal>
-+ <signal name="NameAcquired">
-+ <arg type="s"/>
-+ </signal>
-+ </interface>
-+</node>