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 51838138350 for ; Sat, 25 Jan 2020 18:19:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64C47E0831; Sat, 25 Jan 2020 18:19:49 +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 064D4E0831 for ; Sat, 25 Jan 2020 18:19:47 +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 F31B734E2C2 for ; Sat, 25 Jan 2020 18:19:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 808CF3E for ; Sat, 25 Jan 2020 18:19:44 +0000 (UTC) From: "Jörg Bornkessel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jörg Bornkessel" Message-ID: <1579976348.dc8f1a0976bdbb2f25377ee9e57f9f98927a0504.hd_brummy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vdrtools-genindex/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/vdrtools-genindex/vdrtools-genindex-0.1.3-r2.ebuild X-VCS-Directories: media-video/vdrtools-genindex/ X-VCS-Committer: hd_brummy X-VCS-Committer-Name: Jörg Bornkessel X-VCS-Revision: dc8f1a0976bdbb2f25377ee9e57f9f98927a0504 X-VCS-Branch: master Date: Sat, 25 Jan 2020 18:19:44 +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: 8c8d4f95-69fa-4beb-be43-8cf20f403b3a X-Archives-Hash: d74fc5a0bd80f204654d2a9783d030f8 commit: dc8f1a0976bdbb2f25377ee9e57f9f98927a0504 Author: Joerg Bornkessel gentoo org> AuthorDate: Sat Jan 25 18:19:08 2020 +0000 Commit: Jörg Bornkessel gentoo org> CommitDate: Sat Jan 25 18:19:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc8f1a09 media-video/vdrtools-genindex: eapi 7; license, homepage fixed Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Joerg Bornkessel gentoo.org> .../vdrtools-genindex-0.1.3-r2.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/media-video/vdrtools-genindex/vdrtools-genindex-0.1.3-r2.ebuild b/media-video/vdrtools-genindex/vdrtools-genindex-0.1.3-r2.ebuild new file mode 100644 index 00000000000..d3261210e22 --- /dev/null +++ b/media-video/vdrtools-genindex/vdrtools-genindex-0.1.3-r2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +SCRIPT="genindex" + +DESCRIPTION="VDR: genindex Script" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="http://www.muempf.de/down/${SCRIPT}-${PV}.tar.gz" + +SLOT="0" +LICENSE="GPL-2+" +KEYWORDS="~amd64 ~x86" + +S=${WORKDIR}/${SCRIPT}-${PV} + +DOCS=( README ) + +src_prepare() { + # respect LDFLAGS + sed -i Makefile \ + -e "s:\$(CXXFLAGS) \$^:\$(CXXFLAGS) \$(LDFLAGS) \$^:" || die + + default +} + +src_install() { + dobin genindex + einstalldocs +}