summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Yamin <plasmaroo@gentoo.org>2004-09-13 20:58:56 +0000
committerTim Yamin <plasmaroo@gentoo.org>2004-09-13 20:58:56 +0000
commit2a8ce1771d3d9a41b3ea3a0e50332edb5730913d (patch)
tree31b7e60caef48da140f9f469ba7cb4379b683ef0 /app-sci
parentfix the specs splitting thingie (diff)
downloadgentoo-2-2a8ce1771d3d9a41b3ea3a0e50332edb5730913d.tar.gz
gentoo-2-2a8ce1771d3d9a41b3ea3a0e50332edb5730913d.tar.bz2
gentoo-2-2a8ce1771d3d9a41b3ea3a0e50332edb5730913d.zip
Added GNU info INFO-DIR index information; bug #63391.
Diffstat (limited to 'app-sci')
-rw-r--r--app-sci/ng-spice-rework/ChangeLog5
-rw-r--r--app-sci/ng-spice-rework/ng-spice-rework-15.ebuild12
2 files changed, 12 insertions, 5 deletions
diff --git a/app-sci/ng-spice-rework/ChangeLog b/app-sci/ng-spice-rework/ChangeLog
index 89e860efa4e7..2bbcb86649d7 100644
--- a/app-sci/ng-spice-rework/ChangeLog
+++ b/app-sci/ng-spice-rework/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-sci/ng-spice-rework
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/ng-spice-rework/ChangeLog,v 1.5 2004/06/24 22:12:22 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/ng-spice-rework/ChangeLog,v 1.6 2004/09/13 20:58:56 plasmaroo Exp $
+
+ 13 Sep 2004; <plasmaroo@gentoo.org> ng-spice-rework-15.ebuild:
+ Added GNU info INFO-DIR index information; bug #63391.
05 Jun 2004; David Holm <dholm@gentoo.org> ng-spice-rework-15.ebuild:
Added to ~ppc.
diff --git a/app-sci/ng-spice-rework/ng-spice-rework-15.ebuild b/app-sci/ng-spice-rework/ng-spice-rework-15.ebuild
index 54124027b6c3..9cadad90a25b 100644
--- a/app-sci/ng-spice-rework/ng-spice-rework-15.ebuild
+++ b/app-sci/ng-spice-rework/ng-spice-rework-15.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/ng-spice-rework/ng-spice-rework-15.ebuild,v 1.4 2004/06/24 22:12:22 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/ng-spice-rework/ng-spice-rework-15.ebuild,v 1.5 2004/09/13 20:58:56 plasmaroo Exp $
DESCRIPTION="NGSpice - The Next Generation Spice (Circuit Emulator)"
SRC_URI="http://www.geda.seul.org/dist/ngspice-rework${PV}.tgz"
@@ -14,15 +14,19 @@ KEYWORDS="~x86 ~ppc"
DEPEND=">=sys-libs/glibc-2.1.3"
src_compile() {
-
econf || die
emake || die
-
}
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
make DESTDIR=${D} install || die
dodoc COPYING COPYRIGHT CREDITS ChangeLog README
-
}