Gentoo Archives: gentoo-commits

From: "Tiziano Müller" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/dev-zero:master commit in: sci-electronics/qucs/
Date: Mon, 14 Dec 2015 12:52:28
Message-Id: 1450097528.b7985f774a1f1c23fd864e502c440b33ccd199d6.dev-zero@gentoo
1 commit: b7985f774a1f1c23fd864e502c440b33ccd199d6
2 Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 14 12:52:08 2015 +0000
4 Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 14 12:52:08 2015 +0000
6 URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=b7985f77
7
8 sci-electronics/qucs: import version bump from booboo overlay
9
10 sci-electronics/qucs/Manifest | 1 +
11 sci-electronics/qucs/qucs-0.0.19.150523.ebuild | 36 ++++++++++++++++++++++++++
12 2 files changed, 37 insertions(+)
13
14 diff --git a/sci-electronics/qucs/Manifest b/sci-electronics/qucs/Manifest
15 new file mode 100644
16 index 0000000..0342f40
17 --- /dev/null
18 +++ b/sci-electronics/qucs/Manifest
19 @@ -0,0 +1 @@
20 +DIST qucs-0.0.19-150523-git-0046130.tar.gz 48174723 SHA256 6deb5ee2d76b2c87e62c2b5eff17dfa4b99be3972463447d5640880411234c82 SHA512 01b2babbed992c9a4a4bf5dbe9a327e716a7b047682947a198821e838188b9218a3ef38977e531f34c69069f04e820a9bf8bd26c9791106f12d92bdefde72cfb WHIRLPOOL e21b836d1d4b4840504505162bd40c77142fbdeb2d8ca7d2a8393c78fb6b1a3f0d356e823930df9c2272a40b351200564bdb806afeb22ff5287d56c29a120f0b
21
22 diff --git a/sci-electronics/qucs/qucs-0.0.19.150523.ebuild b/sci-electronics/qucs/qucs-0.0.19.150523.ebuild
23 new file mode 100644
24 index 0000000..54a5f68
25 --- /dev/null
26 +++ b/sci-electronics/qucs/qucs-0.0.19.150523.ebuild
27 @@ -0,0 +1,36 @@
28 +# Copyright 1999-2013 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=5
33 +
34 +MY_P="${PN}-0.0.19-150523-git-0046130"
35 +
36 +inherit autotools-utils flag-o-matic toolchain-funcs
37 +
38 +DESCRIPTION="Quite Universal Circuit Simulator in Qt4"
39 +HOMEPAGE="http://qucs.sourceforge.net/"
40 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
41 +S="$WORKDIR/${MY_P}"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +RDEPEND="dev-qt/qtcore:4[qt3support]
49 + dev-qt/qtgui:4[qt3support]
50 + dev-qt/qt3support:4
51 + x11-libs/libX11"
52 +DEPEND="${RDEPEND}"
53 +
54 +AUTOTOOLS_IN_SOURCE_BUILD=1
55 +
56 +src_configure() {
57 + # the package doesn't use pkg-config on Linux, only on Darwin
58 + # very smart of upstream...
59 + append-ldflags $( $(tc-getPKG_CONFIG) --libs-only-L \
60 + QtCore QtGui QtXml Qt3Support )
61 +
62 + autotools-utils_src_configure
63 +}