blob: 840aa83c75052c724ac550a18b8a059ba8d51b3c (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/kmldonkey/kmldonkey-0.10.1.ebuild,v 1.3 2005/10/21 11:49:24 blubb Exp $
inherit kde eutils
DESCRIPTION="Provides integration for the MLDonkey P2P software and KDE 3"
HOMEPAGE="http://www.kmldonkey.org/"
SRC_URI="http://savannah.nongnu.org/download/kmldonkey/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="|| ( kde-base/kcontrol kde-base/kdebase )"
need-kde 3
src_unpack() {
kde_src_unpack
epatch ${FILESDIR}/${P}-sandbox.patch
WANT_AUTOMAKE=1.7 make -f Makefile.cvs
}
pkg_postinst() {
echo
einfo "To configure Kmldonkey, you can use the KDE Control Center."
echo
}
|