From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RwE6i-0007Hs-6i for garchives@archives.gentoo.org; Sat, 11 Feb 2012 14:39:20 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DC39E07C4; Sat, 11 Feb 2012 14:39:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E064CE07C6 for ; Sat, 11 Feb 2012 14:39:07 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48D811B401E for ; Sat, 11 Feb 2012 14:39:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 07D99E5403 for ; Sat, 11 Feb 2012 14:39:05 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <59153c72cceb41485bc591b8ecd0bc544bdb3ae2.mgorny@gentoo> Subject: [gentoo-commits] dev/mgorny:master commit in: sys-apps/systemd-ui/ X-VCS-Repository: dev/mgorny X-VCS-Files: sys-apps/systemd-ui/metadata.xml sys-apps/systemd-ui/systemd-ui-9999.ebuild X-VCS-Directories: sys-apps/systemd-ui/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 59153c72cceb41485bc591b8ecd0bc544bdb3ae2 Date: Sat, 11 Feb 2012 14:39:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 3925e869-0d11-4c0c-8399-cf1a33037b5e X-Archives-Hash: 36cfbdb737f483e4ff229fb3efe99a36 commit: 59153c72cceb41485bc591b8ecd0bc544bdb3ae2 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Sat Feb 11 14:08:16 2012 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Sat Feb 11 14:39:52 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/mgorny.git;a=3D= commit;h=3D59153c72 sys-apps/systemd-ui: Introduce ebuild for separated systemd UI tools. (Portage version: 2.2.0_alpha85_p38/git/Linux x86_64, unsigned Manifest c= ommit) --- sys-apps/systemd-ui/metadata.xml | 8 +++ sys-apps/systemd-ui/systemd-ui-9999.ebuild | 68 ++++++++++++++++++++++= ++++++ 2 files changed, 76 insertions(+), 0 deletions(-) diff --git a/sys-apps/systemd-ui/metadata.xml b/sys-apps/systemd-ui/metad= ata.xml new file mode 100644 index 0000000..fe305d2 --- /dev/null +++ b/sys-apps/systemd-ui/metadata.xml @@ -0,0 +1,8 @@ + + + + + systemd@gentoo.org + Gentoo systemd team + + diff --git a/sys-apps/systemd-ui/systemd-ui-9999.ebuild b/sys-apps/system= d-ui/systemd-ui-9999.ebuild new file mode 100644 index 0000000..9a44c23 --- /dev/null +++ b/sys-apps/systemd-ui/systemd-ui-9999.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D4 + +#if LIVE +AUTOTOOLS_AUTORECONF=3Dyes +EGIT_REPO_URI=3D"git://anongit.freedesktop.org/systemd/${PN} + http://cgit.freedesktop.org/systemd/${PN}/" + +inherit git-2 +#endif + +inherit autotools-utils + +DESCRIPTION=3D"System and service manager for Linux" +HOMEPAGE=3D"http://www.freedesktop.org/wiki/Software/systemd" +SRC_URI=3D"http://www.freedesktop.org/software/systemd/${P}.tar.xz" + +LICENSE=3D"GPL-2" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"" + +VALASLOT=3D"0.14" + +RDEPEND=3D"!sys-apps/systemd[gtk] + >=3Ddev-libs/glib-2.26 + dev-libs/libgee:0 + sys-apps/dbus + x11-libs/gtk+:2 + >=3Dx11-libs/libnotify-0.7" + +DEPEND=3D"${RDEPEND} + app-arch/xz-utils + dev-lang/vala:${VALASLOT}" + +#if LIVE +SRC_URI=3D +KEYWORDS=3D + +DEPEND=3D"${DEPEND} + app-text/docbook-xml-dtd:4.2" +#endif + +# Due to vala being broken. +AUTOTOOLS_IN_SOURCE_BUILD=3D1 + +src_prepare() { + # Force the rebuild of .vala sources + touch src/*.vala || die + + # Fix hardcoded path in .vala. + sed -i -e 's:/lib/systemd:/usr/lib/systemd:g' src/*.vala || die + + autotools-utils_src_prepare +} + +src_configure() { + local myeconfargs=3D( + # install everything to /usr + --with-rootprefix=3D/usr + ) + + export VALAC=3D"$(type -p valac-${VALASLOT})" + autotools-utils_src_configure +}