summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-08-30 12:22:12 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-08-30 12:22:12 +0000
commit700183be72c2bb982e6c1c31f1244de222903234 (patch)
treed6d20ef8803b18c0cae165cc920cf89e7fe9c38e /app-office/dia
parentversion bump (diff)
downloadhistorical-700183be72c2bb982e6c1c31f1244de222903234.tar.gz
historical-700183be72c2bb982e6c1c31f1244de222903234.tar.bz2
historical-700183be72c2bb982e6c1c31f1244de222903234.zip
LFH compliance
Diffstat (limited to 'app-office/dia')
-rw-r--r--app-office/dia/ChangeLog6
-rw-r--r--app-office/dia/dia-0.90-r1.ebuild30
2 files changed, 15 insertions, 21 deletions
diff --git a/app-office/dia/ChangeLog b/app-office/dia/ChangeLog
index 23034c7436e8..2a5adcb56fa9 100644
--- a/app-office/dia/ChangeLog
+++ b/app-office/dia/ChangeLog
@@ -1,9 +1,13 @@
# ChangeLog for app-office/dia
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-office/dia/ChangeLog,v 1.5 2002/08/06 17:40:50 gerk Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/dia/ChangeLog,v 1.6 2002/08/30 12:22:12 seemant Exp $
*dia-0.90-r1 (21 Jun 2002)
+ 30 Aug 2002; Seemant Kulleen <seemant@gentoo.org> dia-0.90-r1.ebuild :
+
+ LFH compliance and massive cleanup
+
06 Aug 2002; Mark Guertin <gerk@gentoo.org> :
Added ppc to keywords
diff --git a/app-office/dia/dia-0.90-r1.ebuild b/app-office/dia/dia-0.90-r1.ebuild
index 3e5c3651ad2f..eedc741801e1 100644
--- a/app-office/dia/dia-0.90-r1.ebuild
+++ b/app-office/dia/dia-0.90-r1.ebuild
@@ -1,14 +1,15 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/app-office/dia/dia-0.90-r1.ebuild,v 1.3 2002/08/06 17:40:50 gerk Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/dia/dia-0.90-r1.ebuild,v 1.4 2002/08/30 12:22:12 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Diagram Creation Program"
SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/gnome-office/dia.shtml"
-KEYWORDS="x86 ppc"
-LICENSE="GPL-2"
+
SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86 ppc"
RDEPEND=">=dev-libs/libxml-1.8.15
>=media-libs/gdk-pixbuf-0.18.0
@@ -25,28 +26,17 @@ DEPEND="${RDEPEND}
src_compile() {
local myconf
- if [ "`use gnome`" ] ; then
- myconf="--enable-gnome"
- fi
+ use gnome && myconf="--enable-gnome"
- if [ "`use bonobo`" ]; then
- myconf="--enable-gnome --enable-bonobo"
- fi
+ use bonobo myconf="--enable-gnome --enable-bonobo"
-# if [ "`use python`" ] ; then
-# myconf="${myconf} --with-python"
-# fi
+# use python && myconf="${myconf} --with-python"
- if [ -z "`use nls`" ] ; then
- myconf="${myconf} --disable-nls"
- fi
+ use nls || myconf="${myconf} --disable-nls"
- ./configure --host=${CHOST} \
- --prefix=/usr \
- ${myconf} || die
-
- # enable-gnome-print not recoomended
+ # enable-gnome-print not recoomended
+ econf ${myconf} || die
emake || die
}