summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2007-03-07 19:42:10 +0000
committerDenis Dupeyron <calchan@gentoo.org>2007-03-07 19:42:10 +0000
commitf7a8b2ef98ae8497093935946bdf29337fa8f92d (patch)
tree76f60ae6de8944d4b1be49ce14bc03ebe4abf5c8 /sci-electronics/magic
parentRemove || die from end of econf as Portage allready does this; ebuild.sh (diff)
downloadgentoo-2-f7a8b2ef98ae8497093935946bdf29337fa8f92d.tar.gz
gentoo-2-f7a8b2ef98ae8497093935946bdf29337fa8f92d.tar.bz2
gentoo-2-f7a8b2ef98ae8497093935946bdf29337fa8f92d.zip
Stable branch version bump.
(Portage version: 2.1.2.1)
Diffstat (limited to 'sci-electronics/magic')
-rw-r--r--sci-electronics/magic/ChangeLog7
-rw-r--r--sci-electronics/magic/files/digest-magic-7.4.346
-rw-r--r--sci-electronics/magic/magic-7.4.34.ebuild42
3 files changed, 54 insertions, 1 deletions
diff --git a/sci-electronics/magic/ChangeLog b/sci-electronics/magic/ChangeLog
index cb4d69fdd399..dc5c0611efc4 100644
--- a/sci-electronics/magic/ChangeLog
+++ b/sci-electronics/magic/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/magic
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/magic/ChangeLog,v 1.29 2007/02/27 22:03:17 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/magic/ChangeLog,v 1.30 2007/03/07 19:42:10 calchan Exp $
+
+*magic-7.4.34 (07 Mar 2007)
+
+ 07 Mar 2007; Denis Dupeyron <calchan@gentoo.org> +magic-7.4.34.ebuild:
+ Stable branch version bump.
27 Feb 2007; Denis Dupeyron <calchan@gentoo.org> -magic-7.5.69.ebuild:
Removed old development version.
diff --git a/sci-electronics/magic/files/digest-magic-7.4.34 b/sci-electronics/magic/files/digest-magic-7.4.34
new file mode 100644
index 000000000000..46ce9e9f87c7
--- /dev/null
+++ b/sci-electronics/magic/files/digest-magic-7.4.34
@@ -0,0 +1,6 @@
+MD5 103192e92655f022c5a4dfd756dd3705 2002a.tar.gz 6601961
+RMD160 3eb7e61999b032dc47bddc3398543f4d4cde3adf 2002a.tar.gz 6601961
+SHA256 8b47889fcbcd36b1cdc2e51fc0aeb8c17b7780f559b01ca1209f9ed5f8c38d19 2002a.tar.gz 6601961
+MD5 d86afcd468ce277222a12aa995b1e9f5 magic-7.4.34.tgz 3602044
+RMD160 27dc033807c0f6df110477ccbbc6cd29da5dbf70 magic-7.4.34.tgz 3602044
+SHA256 f3df4a51abc8a423f4bf32ddc6e44888c3315dc5a9ed3823c9480c15814a4c41 magic-7.4.34.tgz 3602044
diff --git a/sci-electronics/magic/magic-7.4.34.ebuild b/sci-electronics/magic/magic-7.4.34.ebuild
new file mode 100644
index 000000000000..ddb5e2adf81f
--- /dev/null
+++ b/sci-electronics/magic/magic-7.4.34.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/magic/magic-7.4.34.ebuild,v 1.1 2007/03/07 19:42:10 calchan Exp $
+
+DESCRIPTION="The VLSI design CAD tool."
+HOMEPAGE="http://www.opencircuitdesign.com/magic/index.html"
+SRC_URI="http://www.opencircuitdesign.com/magic/archive/${P}.tgz \
+ ftp://ftp.mosis.edu/pub/sondeen/magic/new/beta/2002a.tar.gz"
+
+LICENSE="as-is GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND="sys-libs/ncurses
+ sys-libs/readline
+ dev-lang/tcl
+ dev-lang/tk
+ dev-tcltk/blt"
+DEPEND="${RDEPEND}
+ app-shells/tcsh"
+
+src_compile() {
+ # Short-circuit top-level configure script to retain CFLAGS
+ cd scripts
+ CPP="cpp" econf --libdir=/usr/share || die "Configuration failed"
+ cd ..
+ emake -j1 || die "Compilation failed"
+}
+
+src_install() {
+ emake -j1 DESTDIR=${D} install || die "Installation failed"
+ dodoc README README.Tcl TODO
+
+ # Install latest MOSIS tech files
+ cp -pPR ${WORKDIR}/2002a ${D}/usr/share/magic/sys/current
+}
+
+pkg_postinst() {
+ ewarn 'Magic now uses "~/.magicrc" as the personal startup file rather'
+ ewarn 'than "~/.magic" or the previously Gentoo specific "~/.magic-cad".'
+}