blob: 30c1a0865f4b37c23580f8ceb7b00929fe2dd064 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/kmerlin/kmerlin-1.2.ebuild,v 1.4 2002/12/14 17:51:50 hannes Exp $
inherit kde-base
need-kde 3
need-autoconf 2.1
DESCRIPTION="KDE MSN Messenger"
SRC_URI="mirror://sourceforge/kmerlin/${P}.tar.gz"
HOMEPAGE="http://kmerlin.olsd.de"
LICENSE="GPL-2"
KEYWORDS="x86"
src_unpack() {
base_src_unpack
# the pregenerated configure script is buggy
cd ${S}
rm configure configure.in
# they also have pregenerated .cpp/.h files which should be generated by uic
# otherwise they will only work with one specific qt-version
cd ${S}/kmerlin
rm adduser.cpp adduser.h chatview.cpp chatview.h accountdlg.cpp \
accountdlg.h base.cpp base.h blocked.cpp blocked.h infowidget.cpp \
infowidget.h alert.cpp alert.h newuser.cpp newuser.h
}
|