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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8712C1581D3 for ; Sun, 19 May 2024 18:11:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 886F4E2A2D; Sun, 19 May 2024 18:11:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 559EBE2A2D for ; Sun, 19 May 2024 18:11:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84AF7335D6B for ; Sun, 19 May 2024 18:11:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5ECE132F for ; Sun, 19 May 2024 18:11:42 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1716142130.b841f47b3f3b916ab0ebc52982447bd38d60e6ab.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild X-VCS-Directories: media-libs/liblingoteach/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b841f47b3f3b916ab0ebc52982447bd38d60e6ab X-VCS-Branch: master Date: Sun, 19 May 2024 18:11:42 +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: 48f675ff-0a1f-4450-9532-3734dab98a2e X-Archives-Hash: 622a865b44ac321aabf6cb8bb204fb02 commit: b841f47b3f3b916ab0ebc52982447bd38d60e6ab Author: Arthur Zamarin gentoo org> AuthorDate: Sun May 19 18:08:50 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun May 19 18:08:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b841f47b media-libs/liblingoteach: update EAPI 6 -> 8 Signed-off-by: Arthur Zamarin gentoo.org> .../liblingoteach/liblingoteach-0.2.3-r1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild new file mode 100644 index 000000000000..cf498135095d --- /dev/null +++ b/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A library to support lingoteach-ui and for generic lesson development" +HOMEPAGE="http://lingoteach.sourceforge.net" +SRC_URI="https://downloads.sourceforge.net/lingoteach/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="debug zlib" + +RDEPEND=" + zlib? ( sys-libs/zlib ) + dev-libs/libxml2 +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_configure() { + local myeconfargs=( + $(use_enable zlib compression) + $(use_enable debug) + ) + econf "${myeconfargs[@]}" +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die + mv "${ED}/usr/share/doc/${P}" "${ED}/usr/share/doc/${PF}" || die +}