# 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".' }