diff options
author | 2008-09-15 23:58:46 +0000 | |
---|---|---|
committer | 2008-09-15 23:58:46 +0000 | |
commit | 5dc466287c12e3c4450cd7144ec13a5d6b283f0b (patch) | |
tree | 0fde9736769c8e4e3f18ada1e1e55e1ce7b79ce0 /dev-libs | |
parent | Manifests (diff) | |
download | overlay-5dc466287c12e3c4450cd7144ec13a5d6b283f0b.tar.gz overlay-5dc466287c12e3c4450cd7144ec13a5d6b283f0b.tar.bz2 overlay-5dc466287c12e3c4450cd7144ec13a5d6b283f0b.zip |
New version of dbus-qt3
svn path=/overlay/; revision=56
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/dbus-qt3/Manifest | 2 | ||||
-rw-r--r-- | dev-libs/dbus-qt3/dbus-qt3-0.9.ebuild | 38 |
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-libs/dbus-qt3/Manifest b/dev-libs/dbus-qt3/Manifest new file mode 100644 index 0000000..2597c72 --- /dev/null +++ b/dev-libs/dbus-qt3/Manifest @@ -0,0 +1,2 @@ +DIST dbus-1-qt3-0.9.tar.gz 452161 RMD160 54014c5d900b6d4c71fb2188b7d272af3da450ba SHA1 e7d1c50c87976ceafa666706564b4362773fae04 SHA256 b65cfc56455b1079a0c8f05486f0c976f763e3009b0ebfbf6b40ac2668d1a0fc +EBUILD dbus-qt3-0.9.ebuild 786 RMD160 576cd4ed38aa3968b4074303efb0cd0c70cb25ec SHA1 267b0d24ab9e85e4a72cace8d8221613ee6d9bb3 SHA256 27f99c1279a345c57a753393fd0610c7567bc8f2ffdcc98b90e7759e7dd8253f diff --git a/dev-libs/dbus-qt3/dbus-qt3-0.9.ebuild b/dev-libs/dbus-qt3/dbus-qt3-0.9.ebuild new file mode 100644 index 0000000..800e81f --- /dev/null +++ b/dev-libs/dbus-qt3/dbus-qt3-0.9.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit qt3 autotools + +MY_P=${P/dbus/dbus-1} + +DESCRIPTION="D-BUS Qt3 bindings compatible with old application API and new dbus" +HOMEPAGE="http://freedesktop.org/wiki/Software/dbus" +SRC_URI="http://people.freedesktop.org/~krake/dbus-1-qt3/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=sys-apps/dbus-1.0" +DEPEND="${RDEPEND} + =x11-libs/qt-3*" + + +S=${WORKDIR}/${MY_P} + +src_unpack () { + unpack ${A} + cd "${S}" + + eautoreconf +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} |