diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-12-07 16:37:17 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-12-07 16:37:17 +0000 |
commit | 305d784a0d8f5e89d791e7ac5907d1e6931b0194 (patch) | |
tree | d935c588948a54e87cdb1690d855767b243ecf08 /app-office | |
parent | Update to bugfix release 2.0.1 (diff) | |
download | gentoo-2-305d784a0d8f5e89d791e7ac5907d1e6931b0194.tar.gz gentoo-2-305d784a0d8f5e89d791e7ac5907d1e6931b0194.tar.bz2 gentoo-2-305d784a0d8f5e89d791e7ac5907d1e6931b0194.zip |
Update to bugfix release 2.0.1
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/koffice/koffice-2.0.1.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app-office/koffice/koffice-2.0.1.ebuild b/app-office/koffice/koffice-2.0.1.ebuild new file mode 100644 index 000000000000..751aac3c9240 --- /dev/null +++ b/app-office/koffice/koffice-2.0.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-2.0.1.ebuild,v 1.1 2000/12/07 16:37:17 achim Exp $ + +A=${P}.tar.bz2 +S=${WORKDIR}/${P} +DESCRIPTION="KDE ${PV} - KOffice" +SRC_PATH="kde/stable/${PV}/distribution/tar/generic/src/${A}" +SRC_URI="ftp://ftp.kde.org/pub/$SRC_PATH + ftp://ftp.sourceforge.net/pub/mirrors/$SRC_PATH" + +HOMEPAGE="http://www.kde.org/" + +DEPEND=">=kde-base/kdelibs-${PV}" +RDEPEND=$DEPEND + +src_compile() { + + try ./configure --prefix=/opt/kde2 --host=${CHOST} \ + --with-qt-dir=/usr/lib/qt \ + --with-qt-includes=/usr/lib/qt/include \ + --with-qt-libs=/usr/lib/qt/lib + try make +} + +src_install() { + try make install DESTDIR=${D} + dodoc ChangeLog COPYING AUTHORS NEWS README +} + |