summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2002-05-07 01:57:35 +0000
committerGeorge Shapovalov <george@gentoo.org>2002-05-07 01:57:35 +0000
commitd517eba7a9d8e497fe68d95c7bf4724375042e0f (patch)
tree6dd188c7bb4de2054397db168157c886309da0ff /app-sci/xcircuit
parentmoved gperiodic from app-misc to app-sci (diff)
downloadgentoo-2-d517eba7a9d8e497fe68d95c7bf4724375042e0f.tar.gz
gentoo-2-d517eba7a9d8e497fe68d95c7bf4724375042e0f.tar.bz2
gentoo-2-d517eba7a9d8e497fe68d95c7bf4724375042e0f.zip
moved kstars, moldy, scigraphica, units and xcirquit from app-misc to app-sci
Diffstat (limited to 'app-sci/xcircuit')
-rw-r--r--app-sci/xcircuit/ChangeLog17
-rw-r--r--app-sci/xcircuit/files/digest-xcircuit-2.5.41
-rw-r--r--app-sci/xcircuit/xcircuit-2.5.4.ebuild36
3 files changed, 54 insertions, 0 deletions
diff --git a/app-sci/xcircuit/ChangeLog b/app-sci/xcircuit/ChangeLog
new file mode 100644
index 000000000000..79b51aec5b0f
--- /dev/null
+++ b/app-sci/xcircuit/ChangeLog
@@ -0,0 +1,17 @@
+# ChangeLog for <CATEGORY>/<PACKAGE_NAME>
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/app-sci/xcircuit/ChangeLog,v 1.1 2002/05/07 01:57:35 george Exp $
+
+*xcircuit-2.5.4 (5 Apr 2003)
+
+ 06 May 2002; George Shapovalov <george@gentoo.org> all :
+
+ moved from app-misc to app-sci
+
+ 5 Apr 2002; Tod Neidt <tod@gentoo.org> xcircuit-2.5.4.ebuild, Changelog :
+
+ Fixed typo on ghoscript dependency.
+
+ 5 Apr 2002; Tod Neidt <tod@gentoo.org> xcircuit-2.5.4.ebuild, Changelog :
+
+ Initial commit. User request.
diff --git a/app-sci/xcircuit/files/digest-xcircuit-2.5.4 b/app-sci/xcircuit/files/digest-xcircuit-2.5.4
new file mode 100644
index 000000000000..d9a7e983712a
--- /dev/null
+++ b/app-sci/xcircuit/files/digest-xcircuit-2.5.4
@@ -0,0 +1 @@
+MD5 86710040906ca4120c399efd93ee0346 xcircuit-2.5.4.tar.bz2 510752
diff --git a/app-sci/xcircuit/xcircuit-2.5.4.ebuild b/app-sci/xcircuit/xcircuit-2.5.4.ebuild
new file mode 100644
index 000000000000..bbdf443fc36a
--- /dev/null
+++ b/app-sci/xcircuit/xcircuit-2.5.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Maintainer: First Last <your email>
+# $Header: /var/cvsroot/gentoo-x86/app-sci/xcircuit/xcircuit-2.5.4.ebuild,v 1.1 2002/05/07 01:57:35 george Exp $
+
+S=${WORKDIR}/${P}
+
+DESCRIPTION="Circuit drawing and schematic capture program."
+
+SRC_URI="http://bach.ece.jhu.edu/~tim/programs/xcircuit/archive/${P}.tar.bz2"
+
+HOMEPAGE="http://bach.ece.jhu.edu/~tim/programs/xcircuit/xcircuit.html"
+
+DEPEND="virtual/x11
+ dev-lang/python
+ app-text/ghostscript"
+
+src_compile() {
+
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --mandir=/usr/share/man || die "./configure failed"
+
+ #Parallel make bombs on parameter.c looking for menudep.h
+ make || die
+
+}
+
+src_install () {
+
+ make DESTDIR=${D} install || die "Installation failed"
+
+ dodoc COPYRIGHT README*
+
+}