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 F025759CA9 for ; Tue, 15 Mar 2016 13:32:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54078E0864; Tue, 15 Mar 2016 13:32:30 +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 C6670E0866 for ; Tue, 15 Mar 2016 13:32:29 +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 47BA733FE7D for ; Tue, 15 Mar 2016 13:32:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C67B84F for ; Tue, 15 Mar 2016 13:32:23 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1458048725.6c38b433d6d20b7bc104b617b4d54ada6f457a53.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenshot-audio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libopenshot-audio/Manifest media-libs/libopenshot-audio/libopenshot-audio-0.0.6.ebuild media-libs/libopenshot-audio/metadata.xml X-VCS-Directories: media-libs/libopenshot-audio/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 6c38b433d6d20b7bc104b617b4d54ada6f457a53 X-VCS-Branch: master Date: Tue, 15 Mar 2016 13:32:23 +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: 3b020674-ddae-43a1-80af-d472f4324986 X-Archives-Hash: 9b26352dd7d500472982097c56977c90 commit: 6c38b433d6d20b7bc104b617b4d54ada6f457a53 Author: Louis Sautier gmail com> AuthorDate: Thu Mar 10 10:50:36 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Tue Mar 15 13:32:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c38b433 media-libs/libopenshot-audio: new ebuild, version 0.0.6 Needed for media-video/openshot-2.0.6 Package-Manager: portage-2.2.27 Closes: https://github.com/gentoo/gentoo/pull/1023 media-libs/libopenshot-audio/Manifest | 1 + .../libopenshot-audio-0.0.6.ebuild | 37 ++++++++++++++++++++++ media-libs/libopenshot-audio/metadata.xml | 19 +++++++++++ 3 files changed, 57 insertions(+) diff --git a/media-libs/libopenshot-audio/Manifest b/media-libs/libopenshot-audio/Manifest new file mode 100644 index 0000000..3f783fa --- /dev/null +++ b/media-libs/libopenshot-audio/Manifest @@ -0,0 +1 @@ +DIST libopenshot-audio-0.0.6.tar.gz 2963454 SHA256 29707bf7603fc08b2a152abff2599405f3499a2d674919b1a1749638cd91f42e SHA512 20ea1805134f899d845469dacca6bb86eaa6e6cb55cea22acca0ff5e4261782ecdedaa44454e2eb449183a985130861d305402f5cce37da4624650a786167993 WHIRLPOOL 1d9638ebc268190e2ef9c4ad93e1b4c86734940488660e65beef4f4362b2e9a1b5602f0717918ded89b8d588251d3fedff91cfd41c9425fb6d63c408b332478c diff --git a/media-libs/libopenshot-audio/libopenshot-audio-0.0.6.ebuild b/media-libs/libopenshot-audio/libopenshot-audio-0.0.6.ebuild new file mode 100644 index 0000000..d2e6928 --- /dev/null +++ b/media-libs/libopenshot-audio/libopenshot-audio-0.0.6.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="Audio library used by OpenShot" +HOMEPAGE="http://www.openshot.org/ https://launchpad.net/libopenshot" +SRC_URI="https://launchpad.net/libopenshot/0.1/0.1.0/+download/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + media-libs/alsa-lib + media-libs/freetype + x11-libs/libX11 + x11-libs/libXext +" +DEPEND=" + x11-libs/libXinerama + x11-libs/libXrandr + ${RDEPEND} +" + +S="${WORKDIR}" + +src_prepare() { + # fix under-linking + # https://github.com/OpenShot/libopenshot-audio/issues/3 + sed -i 's/^\(target_link_libraries(.*\))$/\1 dl pthread)/' \ + src/CMakeLists.txt || die + cmake-utils_src_prepare +} diff --git a/media-libs/libopenshot-audio/metadata.xml b/media-libs/libopenshot-audio/metadata.xml new file mode 100644 index 0000000..c77645c --- /dev/null +++ b/media-libs/libopenshot-audio/metadata.xml @@ -0,0 +1,19 @@ + + + + + sautier.louis@gmail.com + Louis Sautier + Proxied maintainer; set to assignee in all bugs + + + proxy-maint@gentoo.org + Proxy Maintainers + + + libopenshot + OpenShot/libopenshot-audio + https://github.com/OpenShot/libopenshot-audio/issues + https://bugs.launchpad.net/libopenshot/+bugs + +