summaryrefslogtreecommitdiff
blob: 800e81f5afa5358798b2f0781c8c896165aadd68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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"
}