blob: 3bcbf7065cc6818967d7be614c6524cbeeaee11d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeedu/kdeedu-3.3.2-r1.ebuild,v 1.8 2005/03/15 20:43:52 gmsoft Exp $
inherit kde-dist eutils
DESCRIPTION="KDE educational apps"
SRC_URI="mirror://kde/stable/${PV}/src/${PN}-${PV}.tar.bz2
http://dev.gentoo.org/~carlo/patches/kstars-3_3.diff.tar.gz"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
IUSE=""
src_unpack() {
#kde_src_unpack
# Workaround problem on JFS filesystems, see bug 62510
bzip2 -dc ${DISTDIR}/${PN}-${PV}.tar.bz2 | tar xf -
unpack kstars-3_3.diff.tar.gz
cd ${S}
epatch ${WORKDIR}/kstars-3_3.diff
make -f admin/Makefile.common || die
}
|