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 ECD581384B4 for ; Sat, 7 Nov 2015 10:50:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E22121C010; Sat, 7 Nov 2015 10:50:51 +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 CEC0421C010 for ; Sat, 7 Nov 2015 10:50:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 876DC33FEB1 for ; Sat, 7 Nov 2015 10:50:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E43D19F for ; Sat, 7 Nov 2015 10:50:45 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1446893435.2b36d5d24ed6e8e522e44d3666199d051d002738.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gsound/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gsound/Manifest media-libs/gsound/gsound-1.0.2.ebuild X-VCS-Directories: media-libs/gsound/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 2b36d5d24ed6e8e522e44d3666199d051d002738 X-VCS-Branch: master Date: Sat, 7 Nov 2015 10:50:45 +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: b404e630-0b11-4e1e-91d2-c606987a92f3 X-Archives-Hash: 06e964ab9451ce3e7bb441081146dccd commit: 2b36d5d24ed6e8e522e44d3666199d051d002738 Author: Pacho Ramos gentoo org> AuthorDate: Sat Nov 7 10:50:35 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Nov 7 10:50:35 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b36d5d2 media-libs/gsound: Version bump Package-Manager: portage-2.2.23 media-libs/gsound/Manifest | 1 + media-libs/gsound/gsound-1.0.2.ebuild | 40 +++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/media-libs/gsound/Manifest b/media-libs/gsound/Manifest index 4a4f82a..5a47348 100644 --- a/media-libs/gsound/Manifest +++ b/media-libs/gsound/Manifest @@ -1 +1,2 @@ DIST gsound-1.0.1.tar.xz 256804 SHA256 ea0dd94429c0645f2f98824274ef04543fe459dd83a5449a68910acc3ba67f29 SHA512 0c4db73f5e9a620c53598b439cfa001482b86d58bcd77986b43d83bee42a905dadc1b7c44c78dfcd9b5c361b5275508c7320569358423bc7a82ee1a1f2995529 WHIRLPOOL a8355c9fc45b94aa46252f2beabe458d3f0cc6031993f6811d70940ec497dc08b264f021eb083d5ec1b888464abb0b41c517e5af3ef9d7bbbf586e141032c51a +DIST gsound-1.0.2.tar.xz 282068 SHA256 bba8ff30eea815037e53bee727bbd5f0b6a2e74d452a7711b819a7c444e78e53 SHA512 3525598aade28129d605e745cd6e8ef292220c446d59b34129056fa2aba7b4aa808c3efd29f4916056e20d5e4046b0edf2a6c9b97c272c95e59af7f8ef62e6b0 WHIRLPOOL 19ec0f6cf72bd312e8a13f1544322fe8655be6d2178524257ee92364e585ef98a9a332960be123544768cb23ad105e43d814ca99f4acf82382c4d50301f03449 diff --git a/media-libs/gsound/gsound-1.0.2.ebuild b/media-libs/gsound/gsound-1.0.2.ebuild new file mode 100644 index 0000000..27738ac --- /dev/null +++ b/media-libs/gsound/gsound-1.0.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="no" +VALA_USE_DEPEND="vapigen" + +inherit gnome2 vala + +DESCRIPTION="Thin GObject wrapper around the libcanberra sound event library" +HOMEPAGE="https://wiki.gnome.org/Projects/GSound" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+introspection" + +# vala setup required for vapigen check +RDEPEND=" + >=dev-libs/glib-2.36:2 + media-libs/libcanberra + introspection? ( >=dev-libs/gobject-introspection-1.2.9:= ) +" +DEPEND="${RDEPEND} + $(vala_depend) + >=dev-util/gtk-doc-am-1.20 + virtual/pkgconfig +" + +src_prepare() { + vala_src_prepare + gnome2_src_prepare +} + +src_configure () { + gnome2_src_configure \ + --disable-static \ + $(use_enable introspection) +}