From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 89C921384B4 for ; Mon, 14 Dec 2015 12:52:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC89821C0E6; Mon, 14 Dec 2015 12:52:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A09B21C0E6 for ; Mon, 14 Dec 2015 12:52:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0D387340A6A for ; Mon, 14 Dec 2015 12:52:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD104A3F for ; Mon, 14 Dec 2015 12:52:19 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1450097528.b7985f774a1f1c23fd864e502c440b33ccd199d6.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: sci-electronics/qucs/ X-VCS-Repository: dev/dev-zero X-VCS-Files: sci-electronics/qucs/Manifest sci-electronics/qucs/qucs-0.0.19.150523.ebuild X-VCS-Directories: sci-electronics/qucs/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: b7985f774a1f1c23fd864e502c440b33ccd199d6 X-VCS-Branch: master Date: Mon, 14 Dec 2015 12:52:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4e8190b4-8b8c-4678-8d1b-8a80ac736a62 X-Archives-Hash: dee8b6fdb09b601134d8911b6a53fe24 commit: b7985f774a1f1c23fd864e502c440b33ccd199d6 Author: Tiziano Müller gentoo org> AuthorDate: Mon Dec 14 12:52:08 2015 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Mon Dec 14 12:52:08 2015 +0000 URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=b7985f77 sci-electronics/qucs: import version bump from booboo overlay sci-electronics/qucs/Manifest | 1 + sci-electronics/qucs/qucs-0.0.19.150523.ebuild | 36 ++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/sci-electronics/qucs/Manifest b/sci-electronics/qucs/Manifest new file mode 100644 index 0000000..0342f40 --- /dev/null +++ b/sci-electronics/qucs/Manifest @@ -0,0 +1 @@ +DIST qucs-0.0.19-150523-git-0046130.tar.gz 48174723 SHA256 6deb5ee2d76b2c87e62c2b5eff17dfa4b99be3972463447d5640880411234c82 SHA512 01b2babbed992c9a4a4bf5dbe9a327e716a7b047682947a198821e838188b9218a3ef38977e531f34c69069f04e820a9bf8bd26c9791106f12d92bdefde72cfb WHIRLPOOL e21b836d1d4b4840504505162bd40c77142fbdeb2d8ca7d2a8393c78fb6b1a3f0d356e823930df9c2272a40b351200564bdb806afeb22ff5287d56c29a120f0b diff --git a/sci-electronics/qucs/qucs-0.0.19.150523.ebuild b/sci-electronics/qucs/qucs-0.0.19.150523.ebuild new file mode 100644 index 0000000..54a5f68 --- /dev/null +++ b/sci-electronics/qucs/qucs-0.0.19.150523.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MY_P="${PN}-0.0.19-150523-git-0046130" + +inherit autotools-utils flag-o-matic toolchain-funcs + +DESCRIPTION="Quite Universal Circuit Simulator in Qt4" +HOMEPAGE="http://qucs.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" +S="$WORKDIR/${MY_P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-qt/qtcore:4[qt3support] + dev-qt/qtgui:4[qt3support] + dev-qt/qt3support:4 + x11-libs/libX11" +DEPEND="${RDEPEND}" + +AUTOTOOLS_IN_SOURCE_BUILD=1 + +src_configure() { + # the package doesn't use pkg-config on Linux, only on Darwin + # very smart of upstream... + append-ldflags $( $(tc-getPKG_CONFIG) --libs-only-L \ + QtCore QtGui QtXml Qt3Support ) + + autotools-utils_src_configure +}