summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-04-19 12:24:03 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-04-19 12:24:03 +0000
commit83fdfbb17784f6195ab7e486a20f49f6756472d9 (patch)
tree3bd78bac9742173ab08acc933cefa3e1faae8c82 /app-sci/scigraphica
parentAdded ~sparc keyword. (Manifest recommit) (diff)
downloadgentoo-2-83fdfbb17784f6195ab7e486a20f49f6756472d9.tar.gz
gentoo-2-83fdfbb17784f6195ab7e486a20f49f6756472d9.tar.bz2
gentoo-2-83fdfbb17784f6195ab7e486a20f49f6756472d9.zip
Adding IUSE, cleanup
Diffstat (limited to 'app-sci/scigraphica')
-rw-r--r--app-sci/scigraphica/ChangeLog9
-rw-r--r--app-sci/scigraphica/files/digest-scigraphica-0.8.01
-rw-r--r--app-sci/scigraphica/files/digest-scigraphica-0.8.0-r11
-rw-r--r--app-sci/scigraphica/scigraphica-0.8.0-r1.ebuild52
-rw-r--r--app-sci/scigraphica/scigraphica-0.8.0-r2.ebuild5
-rw-r--r--app-sci/scigraphica/scigraphica-0.8.0.ebuild51
6 files changed, 9 insertions, 110 deletions
diff --git a/app-sci/scigraphica/ChangeLog b/app-sci/scigraphica/ChangeLog
index 26911c516403..d850254023d2 100644
--- a/app-sci/scigraphica/ChangeLog
+++ b/app-sci/scigraphica/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-sci/scigraphica
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/scigraphica/ChangeLog,v 1.6 2004/01/04 20:49:18 george Exp $
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/scigraphica/ChangeLog,v 1.7 2004/04/19 12:24:03 phosphan Exp $
+
+ 19 Apr 2004; Patrick Kursawe <phosphan@gentoo.org>
+ scigraphica-0.8.0-r1.ebuild, scigraphica-0.8.0-r2.ebuild,
+ scigraphica-0.8.0.ebuild:
+ Adding IUSE, cleanup
*scigraphica-0.8.0-r2 (04 jan 2003)
diff --git a/app-sci/scigraphica/files/digest-scigraphica-0.8.0 b/app-sci/scigraphica/files/digest-scigraphica-0.8.0
deleted file mode 100644
index 16631c877734..000000000000
--- a/app-sci/scigraphica/files/digest-scigraphica-0.8.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8527c80fe75bc4f72c14548c7a2b0b71 scigraphica-0.8.0.tar.gz 841199
diff --git a/app-sci/scigraphica/files/digest-scigraphica-0.8.0-r1 b/app-sci/scigraphica/files/digest-scigraphica-0.8.0-r1
deleted file mode 100644
index 16631c877734..000000000000
--- a/app-sci/scigraphica/files/digest-scigraphica-0.8.0-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8527c80fe75bc4f72c14548c7a2b0b71 scigraphica-0.8.0.tar.gz 841199
diff --git a/app-sci/scigraphica/scigraphica-0.8.0-r1.ebuild b/app-sci/scigraphica/scigraphica-0.8.0-r1.ebuild
deleted file mode 100644
index 2b68e90cd1ba..000000000000
--- a/app-sci/scigraphica/scigraphica-0.8.0-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/scigraphica/scigraphica-0.8.0-r1.ebuild,v 1.5 2004/01/04 20:49:18 george Exp $
-
-DESCRIPTION="Scientific application for data analysis and technical graphics"
-SRC_URI="http://scigraphica.sourceforge.net/src/${P}.tar.gz"
-HOMEPAGE="http://scigraphica.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE="gnome"
-
-DEPEND=">=x11-libs/gtk+extra-0.99.17
- >=dev-python/numeric-20.3
- >=dev-libs/libxml-1.8.16
- >=media-libs/imlib-1.9.14
- gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r3 >=gnome-base/ORBit-0.5.12-r1 >=gnome-base/gnome-print-0.34 )"
- #bonobo? ( >=gnome-base/bonobo-1.0.18 )"
-
-src_compile() {
- #bonobo breaks compile when enabled so it is not enabled for now.
- #the result seems to be no printing under gnome.
- #also need to look into --with-lp and --with-lpr config flags
-
- local myconf=""
- use gnome || myconf="${myconf} --without-gnome" #default enabled
-# use bonobo && myconf="${myconf} --with-bonobo" #default disabled
-
- #fix Exec= in sg.desktop
- cp sg.desktop sg.desktop.orig
- sed -e 's:\(Exec=\)sga:\1scigraphica:' sg.desktop.orig > sg.desktop
-
- #fix termcap dependency
- cp configure configure.orig
- sed -e 's:-ltermcap:-lncurses:' configure.orig > configure
-
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- ${myconf} || die "Configuration Failed"
-
- emake || die "Parallel Make Failed"
-}
-
-src_install() {
- make DESTDIR=${D} install || die "Installation Failed"
- dodoc AUTHORS ChangeLog FAQ.compile \
- INSTALL NEWS README TODO
-}
diff --git a/app-sci/scigraphica/scigraphica-0.8.0-r2.ebuild b/app-sci/scigraphica/scigraphica-0.8.0-r2.ebuild
index 9a30b6dccda2..77315efa905b 100644
--- a/app-sci/scigraphica/scigraphica-0.8.0-r2.ebuild
+++ b/app-sci/scigraphica/scigraphica-0.8.0-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/scigraphica/scigraphica-0.8.0-r2.ebuild,v 1.1 2004/01/04 20:49:18 george Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/scigraphica/scigraphica-0.8.0-r2.ebuild,v 1.2 2004/04/19 12:24:03 phosphan Exp $
DESCRIPTION="Scientific application for data analysis and technical graphics"
SRC_URI="http://scigraphica.sourceforge.net/src/${P}.tar.gz"
@@ -8,7 +8,7 @@ HOMEPAGE="http://scigraphica.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="x86"
IUSE="gnome"
DEPEND=">=x11-libs/gtk+extra-0.99.17
@@ -17,7 +17,6 @@ DEPEND=">=x11-libs/gtk+extra-0.99.17
>=dev-libs/libxml-1.8.16
>=media-libs/imlib-1.9.14
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r3 >=gnome-base/ORBit-0.5.12-r1 >=gnome-base/gnome-print-0.34 )"
- #bonobo? ( >=gnome-base/bonobo-1.0.18 )"
pkg_setup() {
if has_version ">=dev-python/pygtk-0.99"; then
diff --git a/app-sci/scigraphica/scigraphica-0.8.0.ebuild b/app-sci/scigraphica/scigraphica-0.8.0.ebuild
deleted file mode 100644
index 80a04bfa3b05..000000000000
--- a/app-sci/scigraphica/scigraphica-0.8.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/scigraphica/scigraphica-0.8.0.ebuild,v 1.11 2004/01/04 20:49:18 george Exp $
-
-DESCRIPTION="Scientific application for data analysis and technical graphics"
-SRC_URI="http://scigraphica.sourceforge.net/src/${P}.tar.gz"
-HOMEPAGE="http://scigraphica.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE="gnome"
-
-DEPEND=">=x11-libs/gtk+extra-0.99.17
- >=dev-python/numeric-20.3
- >=dev-libs/libxml-1.8.16
- gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r3 >=gnome-base/ORBit-0.5.12-r1 >=gnome-base/gnome-print-0.34 )"
- #bonobo? ( >=gnome-base/bonobo-1.0.18 )"
-
-src_compile() {
- #bonobo breaks compile when enabled so it is not enabled for now.
- #the result seems to be no printing under gnome.
- #also need to look into --with-lp and --with-lpr config flags
-
- local myconf=""
- use gnome || myconf="${myconf} --without-gnome" #default enabled
-# use bonobo && myconf="${myconf} --with-bonobo" #default disabled
-
- #fix Exec= in sg.desktop
- cp sg.desktop sg.desktop.orig
- sed -e 's:\(Exec=\)sga:\1scigraphica:' sg.desktop.orig > sg.desktop
-
- #fix termcap dependency
- cp configure configure.orig
- sed -e 's:-ltermcap:-lncurses:' configure.orig > configure
-
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- ${myconf} || die "Configuration Failed"
-
- emake || die "Parallel Make Failed"
-}
-
-src_install() {
- make DESTDIR=${D} install || die "Installation Failed"
- dodoc AUTHORS ChangeLog FAQ.compile \
- INSTALL NEWS README TODO
-}