blob: 77e2f03d134280e81cc983bfdcef8f169d07b974 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/kebuildpart/kebuildpart-0.3-r1.ebuild,v 1.2 2002/07/11 06:30:09 drobbins Exp $
inherit kde-base || die
need-kde 3
DESCRIPTION="Graphical KDE emerge kpart"
SRC_URI="mirror://sourceforge/kemerge/${P}.tar.gz"
HOMEPAGE="http://kemerge.sourceforge.net/"
LICENSE="GPL-2"
src_unpack () {
base_src_unpack
# Fix silly absolute path problem. Author has been notified
D=${S}/ dosed 's:/home/ykoehler/kebuildpart/kebuildpart/::' \
kebuildpart/ebuildIface.kidl
}
src_install() {
kde_src_install
# for some reason this include file is left out.
# i'll notify the author.
cp ${S}/kebuildpart/kebuildview.h ${D}/${KDEDIR}/include/kebuild/
}
|