blob: a267927787419c550f6da3b6939e01e0d6da1d2a (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/oooqs/oooqs-2.1.0.1.ebuild,v 1.4 2008/05/29 12:35:56 suka Exp $
inherit kde eutils
MY_P="${PN}2-1.0.1"
DESCRIPTION="OpenOffice.org Quickstarter, runs in the KDE SystemTray"
HOMEPAGE="http://segfaultskde.berlios.de/index.php"
SRC_URI="mirror://berlios/segfaultskde/${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc -sparc ~x86"
IUSE=""
SLOT="0"
RDEPEND=">=virtual/ooo-2.0.0
|| ( kde-base/ksysguard kde-base/kdebase )"
need-kde 3
src_unpack() {
unpack ${A}
cd ${S}
# OO.o on Gentoo (either binary or source package) use slightly
# different icon names
epatch ${FILESDIR}/icon_names.diff
# oooqs2 is looking for a wrapper script that has other name on gentoo
epatch ${FILESDIR}/oooqs2.patch
}
|