summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2013-02-20 00:32:44 +0000
committerDenis Dupeyron <calchan@gentoo.org>2013-02-20 00:32:44 +0000
commit285b71ca360df11054f052495a0f82ec43a952fc (patch)
tree54f986516047998ab08baa47f6a88d5ecca3ab9d /sci-electronics
parentFix up test patching for stable version (diff)
downloadgentoo-2-285b71ca360df11054f052495a0f82ec43a952fc.tar.gz
gentoo-2-285b71ca360df11054f052495a0f82ec43a952fc.tar.bz2
gentoo-2-285b71ca360df11054f052495a0f82ec43a952fc.zip
Add dependency on sys-libs/ncurses, thanks to Jean-Francois Ostiguy (bug #458128).
(Portage version: 2.1.11.52/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/ngspice/ChangeLog7
-rw-r--r--sci-electronics/ngspice/ngspice-23.ebuild97
-rw-r--r--sci-electronics/ngspice/ngspice-24.ebuild7
-rw-r--r--sci-electronics/ngspice/ngspice-25.ebuild5
4 files changed, 13 insertions, 103 deletions
diff --git a/sci-electronics/ngspice/ChangeLog b/sci-electronics/ngspice/ChangeLog
index c1e27f0e7b44..9ceb83756b71 100644
--- a/sci-electronics/ngspice/ChangeLog
+++ b/sci-electronics/ngspice/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/ngspice
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.6 2013/01/17 23:22:14 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.7 2013/02/20 00:32:43 calchan Exp $
+
+ 20 Feb 2013; Denis Dupeyron <calchan@gentoo.org> -ngspice-23.ebuild,
+ ngspice-24.ebuild, ngspice-25.ebuild:
+ Add dependency on sys-libs/ncurses, thanks to Jean-Francois Ostiguy (bug
+ #458128).
*ngspice-25 (17 Jan 2013)
diff --git a/sci-electronics/ngspice/ngspice-23.ebuild b/sci-electronics/ngspice/ngspice-23.ebuild
deleted file mode 100644
index 5af2fc096419..000000000000
--- a/sci-electronics/ngspice/ngspice-23.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-23.ebuild,v 1.1 2011/07/15 22:45:58 calchan Exp $
-
-EAPI="3"
-
-inherit autotools eutils
-
-DESCRIPTION="The Next Generation Spice (Electronic Circuit Simulator)."
-SRC_URI="mirror://sourceforge/ngspice/${P}.tar.gz
- mirror://sourceforge/ngspice/${PN}${PV}-manual.pdf.gz"
-HOMEPAGE="http://ngspice.sourceforge.net"
-LICENSE="BSD GPL-2"
-
-SLOT="0"
-IUSE="X debug readline"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-
-DEPEND="readline? ( >=sys-libs/readline-5.0 )
- X? ( x11-libs/libXaw
- x11-libs/libXt
- x11-libs/libX11
- sci-visualization/xgraph )"
-
-RDEPEND="$DEPEND"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-flags.patch
- eautoreconf
-}
-
-src_configure() {
- local MYCONF
- if use debug ; then
- MYCONF="--enable-debug \
- --enable-ftedebug \
- --enable-cpdebug \
- --enable-asdebug \
- --enable-stepdebug \
- --enable-pzdebug"
- else
- MYCONF="--disable-debug \
- --disable-ftedebug \
- --disable-cpdebug \
- --disable-asdebug \
- --disable-stepdebug \
- --disable-pzdebug"
- fi
- # Those don't compile
- MYCONF="${MYCONF} \
- --disable-sensdebug \
- --disable-blktmsdebug \
- --disable-smltmsdebug"
-
- econf \
- ${MYCONF} \
- --enable-xspice \
- --enable-cider \
- --enable-ndev \
- --disable-xgraph \
- --disable-dependency-tracking \
- --disable-rpath \
- $(use_with X x) \
- $(use_with readline)
-}
-
-# These will need to be looked at some day:
-# --enable-adms
-# --enable-nodelimiting
-# --enable-predictor
-# --enable-newtrunc
-# --enable-openmp
-
-src_install () {
- local infoFile
- for infoFile in doc/ngspice.info*; do
- echo 'INFO-DIR-SECTION EDA' >> ${infoFile}
- echo 'START-INFO-DIR-ENTRY' >> ${infoFile}
- echo '* NGSPICE: (ngspice). Electronic Circuit Simulator.' >> ${infoFile}
- echo 'END-INFO-DIR-ENTRY' >> ${infoFile}
- done
-
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc ANALYSES AUTHORS BUGS ChangeLog DEVICES NEWS \
- README Stuarts_Poly_Notes || die "failed to install documentation"
-
- insinto /usr/share/doc/${PF}
- doins ../${PN}${PV}-manual.pdf || die "failed to install manual"
-
- # We don't need ngmakeidx to be installed
- rm "${D}"/usr/bin/ngmakeidx
-}
-
-src_test () {
- # Bug 108405
- true
-}
diff --git a/sci-electronics/ngspice/ngspice-24.ebuild b/sci-electronics/ngspice/ngspice-24.ebuild
index b2dfb425ee79..9ebf811b6610 100644
--- a/sci-electronics/ngspice/ngspice-24.ebuild
+++ b/sci-electronics/ngspice/ngspice-24.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v 1.4 2012/10/23 17:05:45 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v 1.5 2013/02/20 00:32:43 calchan Exp $
EAPI="3"
@@ -16,7 +16,8 @@ SLOT="0"
IUSE="X debug readline"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-DEPEND="readline? ( >=sys-libs/readline-5.0 )
+DEPEND="sys-libs/ncurses
+ readline? ( >=sys-libs/readline-5.0 )
X? ( x11-libs/libXaw
x11-libs/libXt
x11-libs/libX11
diff --git a/sci-electronics/ngspice/ngspice-25.ebuild b/sci-electronics/ngspice/ngspice-25.ebuild
index eaeb32e3afc5..8c18e38b698a 100644
--- a/sci-electronics/ngspice/ngspice-25.ebuild
+++ b/sci-electronics/ngspice/ngspice-25.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-25.ebuild,v 1.1 2013/01/17 23:22:14 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-25.ebuild,v 1.2 2013/02/20 00:32:43 calchan Exp $
EAPI="3"
@@ -16,7 +16,8 @@ SLOT="0"
IUSE="X debug readline"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-DEPEND="readline? ( >=sys-libs/readline-5.0 )
+DEPEND="sys-libs/ncurses
+ readline? ( >=sys-libs/readline-5.0 )
X? ( x11-libs/libXaw
x11-libs/libXt
x11-libs/libX11