diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-10 01:55:17 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-10 01:55:17 +0000 |
commit | e2615c5b4f073ce45c6be30bc38bc289ea664b9f (patch) | |
tree | 10267392559352477ebf71cb4d310e867503ed2f /gnome-office | |
parent | Dependencie fixes, build most allways with -j1, missing digests and diffs (diff) | |
download | gentoo-2-e2615c5b4f073ce45c6be30bc38bc289ea664b9f.tar.gz gentoo-2-e2615c5b4f073ce45c6be30bc38bc289ea664b9f.tar.bz2 gentoo-2-e2615c5b4f073ce45c6be30bc38bc289ea664b9f.zip |
*** empty log message ***
Diffstat (limited to 'gnome-office')
-rw-r--r-- | gnome-office/dia/dia-0.87.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnome-office/dia/dia-0.87.ebuild b/gnome-office/dia/dia-0.87.ebuild new file mode 100644 index 000000000000..fc8d0c883848 --- /dev/null +++ b/gnome-office/dia/dia-0.87.ebuild @@ -0,0 +1,41 @@ +# 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/gnome-office/dia/dia-0.87.ebuild,v 1.1 2001/05/10 01:55:17 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Diagram Creation Program" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${A}" +HOMEPAGE="http://www.gnome.org/gnome-office/dia.shtml" + +DEPEND=">=gnome-base/gnome-print-0.24 + >=app-arch/rpm-3.0.5" + + +src_compile() { + + local myconf + if [ "`use bonobo`" ] + then + myconf="--enable-bonobo" + fi + try ./configure --host=${CHOST} --prefix=/opt/gnome \ + --sysconfdir=/etc/opt/gnome \ + --enable-gnome --enable-gnome-print ${myconf} + # bonobo support does not work yet + try make + +} + +src_install () { + + try make prefix=${D}/opt/gnome sysconfdir=${D}7etc/opt/gnome install + dodoc AUTHORS COPYING ChangeLog README NEWS TODO KNOWN_BUGS + +} + + + + + |