diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2006-01-23 16:00:22 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2006-01-23 16:00:22 +0000 |
commit | 39449e937e340da0738e00edf8ec91942ff3a3f6 (patch) | |
tree | 5cdeede17ab8867940e4e26604763a11bee0e5bf /sci-electronics | |
parent | Fixed SRC_URI. (diff) | |
download | historical-39449e937e340da0738e00edf8ec91942ff3a3f6.tar.gz historical-39449e937e340da0738e00edf8ec91942ff3a3f6.tar.bz2 historical-39449e937e340da0738e00edf8ec91942ff3a3f6.zip |
Version bump.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/qucs/ChangeLog | 9 | ||||
-rw-r--r-- | sci-electronics/qucs/Manifest | 18 | ||||
-rw-r--r-- | sci-electronics/qucs/files/digest-qucs-0.0.8 | 1 | ||||
-rw-r--r-- | sci-electronics/qucs/qucs-0.0.8.ebuild | 23 |
4 files changed, 46 insertions, 5 deletions
diff --git a/sci-electronics/qucs/ChangeLog b/sci-electronics/qucs/ChangeLog index f8fdd699ee42..23ee88bcb8f0 100644 --- a/sci-electronics/qucs/ChangeLog +++ b/sci-electronics/qucs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-electronics/qucs -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/qucs/ChangeLog,v 1.5 2005/07/28 14:30:45 caleb Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/qucs/ChangeLog,v 1.6 2006/01/23 16:00:22 cryos Exp $ + +*qucs-0.0.8 (23 Jan 2006) + + 23 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org> +qucs-0.0.8.ebuild: + Version bump. 28 Jul 2005; Caleb Tennis <caleb@gentoo.org> qucs-0.0.7.ebuild: Fix qt dep per bug 100235 diff --git a/sci-electronics/qucs/Manifest b/sci-electronics/qucs/Manifest index d157b48fbbf5..1f03fff44040 100644 --- a/sci-electronics/qucs/Manifest +++ b/sci-electronics/qucs/Manifest @@ -1,4 +1,16 @@ -MD5 29e3122fa1795c0c2de22de62eebf09b qucs-0.0.7.ebuild 651 -MD5 c15e7d22ca3e7672014f2f88cfd3d37a ChangeLog 1013 -MD5 be48e2112e63800bb96299dd194e44dd metadata.xml 589 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 723958731ad3d93138f64bdef985b129 ChangeLog 1129 MD5 5c0421664edc5e17cbc9b062af0dd91e files/digest-qucs-0.0.7 63 +MD5 1ff7ddd5039ea1f3e3eb8ce5ccd099b6 files/digest-qucs-0.0.8 63 +MD5 be48e2112e63800bb96299dd194e44dd metadata.xml 589 +MD5 29e3122fa1795c0c2de22de62eebf09b qucs-0.0.7.ebuild 651 +MD5 311feda4ca40760846808ba568250796 qucs-0.0.8.ebuild 651 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.2 (GNU/Linux) + +iD8DBQFD1P5rntT9W3vfTuoRAjN/AJ4tdn1x399/MTo9Iv45hU1bS3+NbQCfaN/5 +8ullUin5oZIOLk3Fn2wESzw= +=bCpp +-----END PGP SIGNATURE----- diff --git a/sci-electronics/qucs/files/digest-qucs-0.0.8 b/sci-electronics/qucs/files/digest-qucs-0.0.8 new file mode 100644 index 000000000000..3c706afef103 --- /dev/null +++ b/sci-electronics/qucs/files/digest-qucs-0.0.8 @@ -0,0 +1 @@ +MD5 0b280090e4b7ff390c6cc4458b3387a8 qucs-0.0.8.tar.gz 1990836 diff --git a/sci-electronics/qucs/qucs-0.0.8.ebuild b/sci-electronics/qucs/qucs-0.0.8.ebuild new file mode 100644 index 000000000000..8f3a61fb86bc --- /dev/null +++ b/sci-electronics/qucs/qucs-0.0.8.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/qucs/qucs-0.0.8.ebuild,v 1.1 2006/01/23 16:00:22 cryos Exp $ + +inherit qt3 + +DESCRIPTION="Quite Universal Circuit Simulator is a Qt based circuit simulator" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://qucs.sourceforge.net/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" +DEPEND="$(qt_min_version 3.3.4)" + +src_compile() { + econf || die "econf failed." + emake || die "emake failed." +} + +src_install() { + make install DESTDIR=${D} || die "make install failed." +} |