blob: 806bff07df7351b7250c666e5aa3a0b24f3dbb24 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kalyptus/kalyptus-3.5.0_beta2.ebuild,v 1.2 2005/10/22 07:54:14 halcy0n Exp $
KMNAME=kdebindings
KM_MAKEFILESREV=1
MAXKDEVER=$PV
KM_DEPRANGE="$PV $MAXKDEVER"
inherit kde-meta
DESCRIPTION="KDE bindings generator for C, ObjC and Java"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/perl"
PATCHES="$FILESDIR/no-gtk-glib-check.diff"
# Weird build system, weirder errors.
# You're welcome to fix this in a better way --danarmak
src_compile () {
export S=$S/kalyptus
kde-meta_src_compile
}
src_install() {
cd $S/kalyptus
make install DESTDIR=$D
}
|