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 4A11413832E for ; Sun, 14 Aug 2016 21:38:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A664521C0F9; Sun, 14 Aug 2016 21:38:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2040D21C0B2 for ; Sun, 14 Aug 2016 21:38:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0FC32340CCD for ; Sun, 14 Aug 2016 21:38:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFF082453 for ; Sun, 14 Aug 2016 21:38:52 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1471210517.9e431619190412513cf3b9091648771d3d080a56.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: media-sound/sayonara-player/ X-VCS-Repository: proj/betagarden X-VCS-Files: media-sound/sayonara-player/metadata.xml media-sound/sayonara-player/sayonara-player-0.9.0_p3_p20160607.ebuild X-VCS-Directories: media-sound/sayonara-player/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 9e431619190412513cf3b9091648771d3d080a56 X-VCS-Branch: master Date: Sun, 14 Aug 2016 21:38:52 +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: 02681a3b-0747-4cf1-9640-6f7e473c8a86 X-Archives-Hash: 1e8ded5bbd14e32f6b86e5bf84c18023 commit: 9e431619190412513cf3b9091648771d3d080a56 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Aug 14 21:35:17 2016 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Aug 14 21:35:17 2016 +0000 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=9e431619 media-sound/sayonara-player: 0.9.0_p3_p20160607 media-sound/sayonara-player/metadata.xml | 7 +++ .../sayonara-player-0.9.0_p3_p20160607.ebuild | 52 ++++++++++++++++++++++ 2 files changed, 59 insertions(+) diff --git a/media-sound/sayonara-player/metadata.xml b/media-sound/sayonara-player/metadata.xml new file mode 100644 index 0000000..82b7b79 --- /dev/null +++ b/media-sound/sayonara-player/metadata.xml @@ -0,0 +1,7 @@ + + + + + sping@gentoo.org + + diff --git a/media-sound/sayonara-player/sayonara-player-0.9.0_p3_p20160607.ebuild b/media-sound/sayonara-player/sayonara-player-0.9.0_p3_p20160607.ebuild new file mode 100644 index 0000000..04816ca --- /dev/null +++ b/media-sound/sayonara-player/sayonara-player-0.9.0_p3_p20160607.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils + +MY_PV=${PV/_p/-git}; MY_PV=${MY_PV/_p/-} +DESCRIPTION="Small, clear and fast audio player for Linux" +HOMEPAGE="https://sayonara-player.com/" +SRC_URI="https://sayonara-player.com/sw/${PN}-${MY_PV}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +MIN_QT_VERSION=5.3 + +RDEPEND=" + dev-libs/glib:2 + >=dev-qt/qtcore-${MIN_QT_VERSION}:5 + >=dev-qt/qtdbus-${MIN_QT_VERSION}:5 + >=dev-qt/qtgui-${MIN_QT_VERSION}:5 + >=dev-qt/qtnetwork-${MIN_QT_VERSION}:5 + >=dev-qt/qtsql-${MIN_QT_VERSION}:5[sqlite] + >=dev-qt/qtwidgets-${MIN_QT_VERSION}:5 + >=dev-qt/qtxml-${MIN_QT_VERSION}:5 + media-libs/libmtp + >=media-libs/taglib-1.6 + media-libs/gst-plugins-base:1.0 + media-libs/gstreamer:1.0 + sys-libs/zlib + " +DEPEND="${RDEPEND} + virtual/pkgconfig + " + +S="${WORKDIR}"/${PN} + +src_configure() { + CXXFLAGS="${CXXFLAGS} -std=c++11 -fPIC" \ + cmake-utils_src_configure +} + +pkg_postinst() { + elog "Optionally, install as well:" + elog " media-sound/lame" + elog " media-libs/gst-plugins-good:1.0" + elog " media-libs/gst-plugins-bad:1.0" +}