From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-dbus/
Date: Sun, 17 Apr 2011 19:40:38 +0000 (UTC) [thread overview]
Message-ID: <41e45ba6afb2d4b1f750c7609acec516caf2279a.mgorny@gentoo> (raw)
commit: 41e45ba6afb2d4b1f750c7609acec516caf2279a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 19:40:46 2011 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 19:40:46 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=41e45ba6
sys-apps/systemd-dbus: Initial commit for systemd dbus units.
(Portage version: 2.2.0_alpha29_p5/git/Linux x86_64, signed Manifest commit with key 05DE07BB)
---
sys-apps/systemd-dbus/Manifest | 13 +++++
sys-apps/systemd-dbus/metadata.xml | 9 +++
sys-apps/systemd-dbus/systemd-dbus-1.4.6.ebuild | 60 +++++++++++++++++++++++
3 files changed, 82 insertions(+), 0 deletions(-)
diff --git a/sys-apps/systemd-dbus/Manifest b/sys-apps/systemd-dbus/Manifest
new file mode 100644
index 0000000..8bca422
--- /dev/null
+++ b/sys-apps/systemd-dbus/Manifest
@@ -0,0 +1,13 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+DIST dbus-1.4.6.tar.gz 1835214 RMD160 c751630654225b729512d7a996e5ad70dbfc59fc SHA1 e87520518dfa0bfc4b8791105673e48f993874d7 SHA256 753e1e64df2de518ec93bdee9a813a85b3c147a363615412818c3c095cb8a567
+EBUILD systemd-dbus-1.4.6.ebuild 1351 RMD160 0c77b1579c18e7df37fb00d84b7aeae28826b785 SHA1 2c447ff04471b9d9cc805ad59dde5c9ea225407f SHA256 1a75a1033b6ce9ce2a1f59ecc7de01885b91317e397b6bf9ae87e2a8ae8e7128
+MISC metadata.xml 255 RMD160 b5f39d5799b7c36dbd279e5433753376c082afa8 SHA1 a4698c0973522834fc27ba7dc0757453338268af SHA256 fbdf23d280480a82b5640acbe75500ca6067b5f565223f62fbd525bda216b972
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (GNU/Linux)
+
+iEYEARECAAYFAk2rQj4ACgkQnGSe5QXeB7tfiwCg3ejPZC7HH7hw8fRfBqvz8NO+
+vQUAoKi4JnvfljvMBfROPRw1RNXvhfob
+=mamB
+-----END PGP SIGNATURE-----
diff --git a/sys-apps/systemd-dbus/metadata.xml b/sys-apps/systemd-dbus/metadata.xml
new file mode 100644
index 0000000..af81389
--- /dev/null
+++ b/sys-apps/systemd-dbus/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>mgorny@gentoo.org</email>
+ <name>Michał Górny</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/sys-apps/systemd-dbus/systemd-dbus-1.4.6.ebuild b/sys-apps/systemd-dbus/systemd-dbus-1.4.6.ebuild
new file mode 100644
index 0000000..61fb276
--- /dev/null
+++ b/sys-apps/systemd-dbus/systemd-dbus-1.4.6.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit autotools-utils systemd
+
+MY_P=dbus-${PV}
+DESCRIPTION="systemd unit files for dbus"
+HOMEPAGE="http://dbus.freedesktop.org/"
+SRC_URI="http://dbus.freedesktop.org/releases/dbus/${MY_P}.tar.gz"
+
+LICENSE="|| ( GPL-2 AFL-2.1 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!sys-apps/dbus[systemd]"
+# To satisfy configure.
+DEPEND="dev-libs/expat
+ dev-util/pkgconfig"
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+ local myeconfargs=(
+ # Optional features are irrelevant here.
+ --without-x
+ --disable-verbose-mode
+ --disable-asserts
+ --disable-inotify
+ --disable-kqueue
+ --disable-selinux
+ --disable-libaudit
+ --disable-static
+ --enable-shared
+ --with-xml=expat
+ --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
+ --with-systemdsystemunitdir="$(systemd_get_unitdir)"
+ --localstatedir=/var
+ )
+
+ autotools-utils_src_configure
+}
+
+src_compile() {
+ :
+}
+
+src_install() {
+ cd "${AUTOTOOLS_BUILD_DIR}"/bus || die
+ systemd_dounit dbus.{service,socket}
+ systemd_enable_service dbus.target dbus.socket
+ systemd_enable_service sockets.target dbus.socket
+ systemd_enable_service multi-user.target dbus.service
+}
next reply other threads:[~2011-04-17 19:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-17 19:40 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-04-23 17:37 [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-dbus/ Michał Górny
2011-04-28 14:33 Michał Górny
2011-04-28 16:33 Michał Górny
2011-05-09 6:36 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=41e45ba6afb2d4b1f750c7609acec516caf2279a.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox