blob: d1d8edb58554e350a4672fd35e5f6d0fbf1de80b (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/kbedic/kbedic-4.0.ebuild,v 1.4 2004/06/24 22:42:44 agriffis Exp $
IUSE="kde"
inherit kde
#S=${WORKDIR}/${P}
DESCRIPTION="English <-> Bulgarian Dictionary"
SRC_URI="mirror://sourceforge/kbedic/$P.tar.gz"
HOMEPAGE="http://kbedic.sourceforge.net"
KEYWORDS="x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND=">=x11-libs/qt-3
kde? ( >=kde-base/kdelibs-3 )"
src_compile() {
use kde && myconf="$myconf --with-kde" || myconf="$myconf --prefix=/usr"
use kde && kde_src_compile myconf
kde_src_compile configure make
}
src_install() {
kde_src_install
use kde && install -m 644 -D ${FILESDIR}/kbedic.desktop ${D}/usr/share/applnk/Utilities/kbedic.desktop
}
|