# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Qucs is a circuit simulator with graphical user interface" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" HOMEPAGE="http://qucs.sourceforge.net/" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=x11-libs/qt-3.1" src_compile() { sh autogen.sh econf emake || die "emake failed" cd qucs-core sh autogen.sh econf emake || die "emake failed" } src_install() { make install DESTDIR=${D} || die "installation failed" cd ${S} make install DESTDIR=${D} || die "installation failed" }