# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ IUSE="kde" DESCRIPTION="Bulgarian Office Assistant" SRC_URI="mirror://sourceforge/bgoffice/${P}.tar.gz mirror://sourceforge/bgoffice/full-pack.tar.bz2" HOMEPAGE="http://bgoffice.sourceforge.net" KEYWORDS="~x86" SLOT="0" LICENSE="GPL-2" DEPEND=">=x11-libs/qt-3 kde? ( >=kde-base/kdelibs-3 )" src_compile() { use kde && myconf="--with-kde" ./configure \ ${myconf} \ --prefix=/usr || die "./configure failed" make || die } src_install() { make prefix=${D}/usr \ install || die "can't install kbgoffice" for file in ${WORKDIR}/full-pack/data/*; do install -m 644 ${file} ${D}/usr/share/bgoffice done use kde && install -m 644 -D ${FILESDIR}/kbgoffice.desktop ${D}/usr/share/applnk/Utilities/kbgoffice.desktop }