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 445AA13835B for ; Sun, 24 Jan 2021 00:08:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BB4AE0922; Sun, 24 Jan 2021 00:08:51 +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 64705E0922 for ; Sun, 24 Jan 2021 00:08:51 +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 703C4340EB6 for ; Sun, 24 Jan 2021 00:08:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B4613A6 for ; Sun, 24 Jan 2021 00:08:49 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1611446915.08b832e8811aaa3f5c91c907be3f8faf7d56be02.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmms/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmms/libmms-0.6.4-r1.ebuild X-VCS-Directories: media-libs/libmms/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 08b832e8811aaa3f5c91c907be3f8faf7d56be02 X-VCS-Branch: master Date: Sun, 24 Jan 2021 00:08:49 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 84cf3961-7166-4087-9e7e-f4354a0938c7 X-Archives-Hash: 4c23fb64b19e7c8eedc66892084f69cb commit: 08b832e8811aaa3f5c91c907be3f8faf7d56be02 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 23 23:53:21 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 24 00:08:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08b832e8 media-libs/libmms: EAPI-7++, autotools-multilib-- Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libmms/libmms-0.6.4-r1.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/media-libs/libmms/libmms-0.6.4-r1.ebuild b/media-libs/libmms/libmms-0.6.4-r1.ebuild new file mode 100644 index 00000000000..d84708f7339 --- /dev/null +++ b/media-libs/libmms/libmms-0.6.4-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib-minimal + +DESCRIPTION="Library for accessing Microsoft Media Server (MMS) media streaming protocol" +HOMEPAGE="https://sourceforge.net/projects/libmms/ https://launchpad.net/libmms/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" + +BDEPEND="virtual/pkgconfig" + +multilib_src_configure() { + ECONF_SOURCE=${S} econf --disable-static +} + +multilib_src_install_all() { + einstalldocs + find "${ED}" -type f -name "*.la" -delete || die +}