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
commit8ab4875e215f9e32c13a30497b58f93ce12a5729 (patch)
tree487ef8e4afe1ef7d5d9cd244306b84dc292557ef /app-sci
parentfix the specs splitting thingie (diff)
downloadhistorical-8ab4875e215f9e32c13a30497b58f93ce12a5729.tar.gz
historical-8ab4875e215f9e32c13a30497b58f93ce12a5729.tar.bz2
historical-8ab4875e215f9e32c13a30497b58f93ce12a5729.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/Manifest4
-rw-r--r--app-sci/ng-spice-rework/ng-spice-rework-15.ebuild12
3 files changed, 14 insertions, 7 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/Manifest b/app-sci/ng-spice-rework/Manifest
index a3e7bc0ae318..047505313081 100644
--- a/app-sci/ng-spice-rework/Manifest
+++ b/app-sci/ng-spice-rework/Manifest
@@ -1,6 +1,6 @@
+MD5 44c3d5b4146a4c955b57f92ecbd3d24f ChangeLog 827
MD5 a06b899b030fa23fc0758943cab8d46a ng-spice-rework-14.ebuild 639
-MD5 95059c26a2172a945622add732f800f0 ChangeLog 703
+MD5 f9d7692e2de46001d45a7f111053e5d4 ng-spice-rework-15.ebuild 924
MD5 e49bb02132d2cd74ad4e6ee291e102d9 metadata.xml 220
-MD5 0af912e2a1ddd1921267c997f8ac8e68 ng-spice-rework-15.ebuild 656
MD5 419df059e644593b30561622cf904785 files/digest-ng-spice-rework-14 71
MD5 cdcbac36f6d0470a9935636cb8ca3306 files/digest-ng-spice-rework-15 66
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
-
}