diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2006-10-09 16:49:38 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2006-10-09 16:49:38 +0000 |
commit | 914f73637704fc78632843509520cf70d4c3ca46 (patch) | |
tree | 873e47f1e4aef22293ada105734e0404e19d0787 /sci-electronics/magic | |
parent | Version bumped. Fixed LICENSE. (diff) | |
download | gentoo-2-914f73637704fc78632843509520cf70d4c3ca46.tar.gz gentoo-2-914f73637704fc78632843509520cf70d4c3ca46.tar.bz2 gentoo-2-914f73637704fc78632843509520cf70d4c3ca46.zip |
Stable branch version bump.
(Portage version: 2.1.2_pre2-r7)
Diffstat (limited to 'sci-electronics/magic')
-rw-r--r-- | sci-electronics/magic/ChangeLog | 7 | ||||
-rw-r--r-- | sci-electronics/magic/files/digest-magic-7.4.29 | 6 | ||||
-rw-r--r-- | sci-electronics/magic/magic-7.4.29.ebuild | 46 |
3 files changed, 58 insertions, 1 deletions
diff --git a/sci-electronics/magic/ChangeLog b/sci-electronics/magic/ChangeLog index ec8ff07c8fe5..5ed9fbdffb18 100644 --- a/sci-electronics/magic/ChangeLog +++ b/sci-electronics/magic/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-electronics/magic # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/magic/ChangeLog,v 1.20 2006/09/20 21:19:51 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/magic/ChangeLog,v 1.21 2006/10/09 16:49:38 calchan Exp $ + +*magic-7.4.29 (09 Oct 2006) + + 09 Oct 2006; Denis Dupeyron <calchan@gentoo.org> +magic-7.4.29.ebuild: + Stable branch version bump. *magic-7.5.40 (20 Sep 2006) diff --git a/sci-electronics/magic/files/digest-magic-7.4.29 b/sci-electronics/magic/files/digest-magic-7.4.29 new file mode 100644 index 000000000000..e984945644dc --- /dev/null +++ b/sci-electronics/magic/files/digest-magic-7.4.29 @@ -0,0 +1,6 @@ +MD5 103192e92655f022c5a4dfd756dd3705 2002a.tar.gz 6601961 +RMD160 3eb7e61999b032dc47bddc3398543f4d4cde3adf 2002a.tar.gz 6601961 +SHA256 8b47889fcbcd36b1cdc2e51fc0aeb8c17b7780f559b01ca1209f9ed5f8c38d19 2002a.tar.gz 6601961 +MD5 8c39e32344c10492d03587384a204cbf magic-7.4.29.tgz 3602586 +RMD160 bbf36275f4c70e515831fdaeed7218619a08cc6e magic-7.4.29.tgz 3602586 +SHA256 fa2555e4949fecba4902cceb1c284331a8183c8f9379a2c99b0db00943036c0f magic-7.4.29.tgz 3602586 diff --git a/sci-electronics/magic/magic-7.4.29.ebuild b/sci-electronics/magic/magic-7.4.29.ebuild new file mode 100644 index 000000000000..2a74e41689be --- /dev/null +++ b/sci-electronics/magic/magic-7.4.29.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/magic/magic-7.4.29.ebuild,v 1.1 2006/10/09 16:49:38 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 + ./configure \ + --prefix=/usr \ + --libdir=/usr/share \ + --mandir=/usr/share/man \ + || die "configure failed" + cd .. + make || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die "install 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".' +} |