From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4D4CC138334 for ; Thu, 26 Jul 2018 17:50:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F7B2E0828; Thu, 26 Jul 2018 17:50:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3054AE0828 for ; Thu, 26 Jul 2018 17:50:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A87D7335C94 for ; Thu, 26 Jul 2018 17:50:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B6FC357 for ; Thu, 26 Jul 2018 17:50:44 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1532627439.3766e6594f25373c0f470ca749379c94795863a6.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/horgand/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/horgand/horgand-1.14-r1.ebuild X-VCS-Directories: media-sound/horgand/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 3766e6594f25373c0f470ca749379c94795863a6 X-VCS-Branch: master Date: Thu, 26 Jul 2018 17:50:44 +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: 1932916a-d1cc-4a29-b011-01ea1873acda X-Archives-Hash: 3d77de25a47d100ec30849a8ada28aad commit: 3766e6594f25373c0f470ca749379c94795863a6 Author: Mikle Kolyada gentoo org> AuthorDate: Thu Jul 26 17:48:58 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Thu Jul 26 17:50:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3766e659 media-sound/horgand: revision bump (EAPI=7) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-sound/horgand/horgand-1.14-r1.ebuild | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/media-sound/horgand/horgand-1.14-r1.ebuild b/media-sound/horgand/horgand-1.14-r1.ebuild new file mode 100644 index 00000000000..a02538b9c3e --- /dev/null +++ b/media-sound/horgand/horgand-1.14-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop toolchain-funcs + +DESCRIPTION="Opensource software organ" +HOMEPAGE="http://horgand.berlios.de" +#SRC_URI="mirror://berlios/${PN}/${P}.tar.gz" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc sparc x86" +IUSE="" + +RDEPEND="x11-libs/fltk:1 + x11-libs/libXpm + media-libs/libsndfile + media-libs/alsa-lib + media-sound/alsa-utils + media-sound/jack-audio-connection-kit" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + default + eapply "${FILESDIR}"/${P}-overflow.patch +} + +src_compile() { + emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} $(fltk-config --cxxflags) \ + $(pkg-config --cflags jack) $(pkg-config --cflags sndfile)" +} + +src_install() { + default + doman man/${PN}.1 + newicon src/${PN}128.xpm ${PN}.xpm + make_desktop_entry ${PN} Horgand ${PN} +}