diff options
author | Philippe Namias <pnamias@gentoo.org> | 2001-03-21 16:57:27 +0000 |
---|---|---|
committer | Philippe Namias <pnamias@gentoo.org> | 2001-03-21 16:57:27 +0000 |
commit | 18235e36c96495e6ac7923b235eae59f4ae3124a (patch) | |
tree | 1ad0fcb50d55087062a6831ca5fd434abad29b7c /app-editors/quanta | |
parent | *** empty log message *** (diff) | |
download | historical-18235e36c96495e6ac7923b235eae59f4ae3124a.tar.gz historical-18235e36c96495e6ac7923b235eae59f4ae3124a.tar.bz2 historical-18235e36c96495e6ac7923b235eae59f4ae3124a.zip |
*** empty log message ***
Diffstat (limited to 'app-editors/quanta')
-rw-r--r-- | app-editors/quanta/files/digest-quanta-2.0 | 1 | ||||
-rw-r--r-- | app-editors/quanta/quanta-2.0.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-editors/quanta/files/digest-quanta-2.0 b/app-editors/quanta/files/digest-quanta-2.0 new file mode 100644 index 000000000000..e41f2d2ffb86 --- /dev/null +++ b/app-editors/quanta/files/digest-quanta-2.0 @@ -0,0 +1 @@ +MD5 dec00150b247d40162fa3941b56c3b93 quanta-2.0-pr1.tar.bz2 diff --git a/app-editors/quanta/quanta-2.0.ebuild b/app-editors/quanta/quanta-2.0.ebuild new file mode 100644 index 000000000000..dddc4772e3e8 --- /dev/null +++ b/app-editors/quanta/quanta-2.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Philippe Namias <pnamias@gentoo.org> + +A=${P}-pr1.tar.bz2 +S=${WORKDIR}/quanta +DESCRIPTION="HTML editor for KDE2" +SRC_URI="http://ftp1.sourceforge.net/quanta/${A}" +HOMEPAGE="http://quanta.sourceforge.net" + +DEPEND=">=kde-base/kde-2.0" + +RDEPEND=$DEPEND + +src_compile() { + + cd ${S} + try ./configure --prefix=/opt/kde2.1 --host=${CHOST} + try make + +} + +src_install () { + + cd ${S} + try make DESTDIR=${D} install + dodoc AUTHORS COPYING ChangeLog NEWS README TODO +} + |