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 6E3BC1395E1 for ; Sun, 30 Oct 2016 14:10:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98A5DE0C50; Sun, 30 Oct 2016 14:10:10 +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 7CC2BE0C50 for ; Sun, 30 Oct 2016 14:10:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 239B2341134 for ; Sun, 30 Oct 2016 14:10:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD70F33D for ; Sun, 30 Oct 2016 14:10:06 +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: <1477836297.24ebff123b09bb0f5c44f74532f1a79c8871cc75.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/sayonara-player-0.9.2_p11_p20161030.ebuild X-VCS-Directories: media-sound/sayonara-player/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 24ebff123b09bb0f5c44f74532f1a79c8871cc75 X-VCS-Branch: master Date: Sun, 30 Oct 2016 14:10:06 +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: d7cef5e6-8afe-43af-81de-1e9e67d24cd3 X-Archives-Hash: 60f4896382cd01d90bbeafdfa629ed55 commit: 24ebff123b09bb0f5c44f74532f1a79c8871cc75 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Oct 30 13:11:39 2016 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Oct 30 14:04:57 2016 +0000 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=24ebff12 media-sound/sayonara-player: 0.9.2_p11_p20161030 .../sayonara-player-0.9.2_p11_p20161030.ebuild | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/media-sound/sayonara-player/sayonara-player-0.9.2_p11_p20161030.ebuild b/media-sound/sayonara-player/sayonara-player-0.9.2_p11_p20161030.ebuild new file mode 100644 index 0000000..7954105 --- /dev/null +++ b/media-sound/sayonara-player/sayonara-player-0.9.2_p11_p20161030.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +CMAKE_BUILD_TYPE=None +inherit eutils 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 + media-plugins/gst-plugins-soundtouch:1.0 + sys-libs/zlib + " +DEPEND="${RDEPEND} + virtual/pkgconfig + " + +S="${WORKDIR}"/${PN} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.9.2_p4_p20160920-updates.patch +} + +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" +}