diff options
author | maciag.artur <maciag.artur@0805d722-a2c2-11dd-9b86-41075523de00> | 2010-03-27 23:18:25 +0000 |
---|---|---|
committer | maciag.artur <maciag.artur@0805d722-a2c2-11dd-9b86-41075523de00> | 2010-03-27 23:18:25 +0000 |
commit | c77f353a97d10df3156ff3aac109d6ef36fe5e08 (patch) | |
tree | b4358dbc4e1f133975455729eaada7c6feae7579 | |
parent | skipfish version bump (diff) | |
download | piczu-c77f353a97d10df3156ff3aac109d6ef36fe5e08.tar.gz piczu-c77f353a97d10df3156ff3aac109d6ef36fe5e08.tar.bz2 piczu-c77f353a97d10df3156ff3aac109d6ef36fe5e08.zip |
dbus-explorer ebuild added
git-svn-id: http://piczu-overlay.googlecode.com/svn/trunk@85 0805d722-a2c2-11dd-9b86-41075523de00
-rw-r--r-- | dev-dotnet/dbus-explorer/Manifest | 2 | ||||
-rw-r--r-- | dev-dotnet/dbus-explorer/dbus-explorer-0.5.ebuild | 30 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-dotnet/dbus-explorer/Manifest b/dev-dotnet/dbus-explorer/Manifest new file mode 100644 index 0000000..39bcc5d --- /dev/null +++ b/dev-dotnet/dbus-explorer/Manifest @@ -0,0 +1,2 @@ +DIST dbus-explorer-0.5.tar.gz 116541 RMD160 0e098115d7c9226189da369155dc71929474d6ea SHA1 ee653218b319774242174fcc465b00ed872e5b77 SHA256 592ad9c4285cc26510935ed76a2e820f24db0fe337a2360640b91df87a0a1fae +EBUILD dbus-explorer-0.5.ebuild 567 RMD160 9cf279177808d8e2d5e92fd238b0778e2b3d5481 SHA1 f6e8d909f5b0281009f2fb14ac1ad47f80db24a5 SHA256 676a7aa6a3331407a88c686c7aa34aecde48c5201e894b896501b3db6ca31458 diff --git a/dev-dotnet/dbus-explorer/dbus-explorer-0.5.ebuild b/dev-dotnet/dbus-explorer/dbus-explorer-0.5.ebuild new file mode 100644 index 0000000..3afdcbd --- /dev/null +++ b/dev-dotnet/dbus-explorer/dbus-explorer-0.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3 + +inherit base mono + +DESCRIPTION="GTK+ application to display the API od D-Bus services" +HOMEPAGE="http://neteril.org/projects/dbus-explorer/" +SRC_URI="http://www.ndesk.org/archive/${PN}/${P}.tar.gz" + +LICENSE="BSD-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND=">=dev-lang/mono-2.0 + sys-apps/dbus + dev-libs/glib:2" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + $(use_enable debug) +} + +src_install() { + base_src_install +} |