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 1B2FE138350 for ; Mon, 10 Feb 2020 00:18:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55E6BE0896; Mon, 10 Feb 2020 00:18:39 +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 35C53E0896 for ; Mon, 10 Feb 2020 00:18:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3F8E934E953 for ; Mon, 10 Feb 2020 00:18:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7D8311D for ; Mon, 10 Feb 2020 00:18:36 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1581293881.c07398e6a75da45d011131651a5493feac61278a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15render/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libg15render/libg15render-9999.ebuild X-VCS-Directories: dev-libs/libg15render/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c07398e6a75da45d011131651a5493feac61278a X-VCS-Branch: master Date: Mon, 10 Feb 2020 00:18:36 +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: 9b278cbd-ffdd-4c67-8571-7ab70410537c X-Archives-Hash: c4008b6282877195ee686b4854c6ea05 commit: c07398e6a75da45d011131651a5493feac61278a Author: David Seifert gentoo org> AuthorDate: Mon Feb 10 00:18:01 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 10 00:18:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c07398e6 dev-libs/libg15render: Remove broken live ebuild Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> dev-libs/libg15render/libg15render-9999.ebuild | 57 -------------------------- 1 file changed, 57 deletions(-) diff --git a/dev-libs/libg15render/libg15render-9999.ebuild b/dev-libs/libg15render/libg15render-9999.ebuild deleted file mode 100644 index 58ded405385..00000000000 --- a/dev-libs/libg15render/libg15render-9999.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -ESVN_PROJECT=g15tools/trunk -ESVN_REPO_URI="https://svn.code.sf.net/p/g15tools/code/trunk/${PN}" - -inherit subversion base eutils autotools - -DESCRIPTION="Small library for display text and graphics on a Logitech G15 keyboard" -HOMEPAGE="https://sourceforge.net/projects/g15tools/" -[[ $PV = *9999* ]] || SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" - -IUSE="truetype" - -RDEPEND=" - dev-libs/libg15 - truetype? ( media-libs/freetype ) -" -DEPEND=${RDEPEND} - -src_unpack() { - if [[ ${PV} = *9999* ]]; then - subversion_src_unpack - fi -} - -src_prepare() { - # Merged upstream - #epatch "${FILESDIR}/${PN}-1.2-pixel-c.patch" - - if [[ ${PV} = *9999* ]]; then - subversion_wc_info - fi - base_src_prepare - if [[ ${PV} = *9999* ]]; then - eautoreconf - fi -} - -src_configure() { - econf \ - --disable-static \ - $(use_enable truetype ttf ) -} - -src_install() { - emake DESTDIR="${D}" \ - docdir=/usr/share/doc/${PF} install || die "make install failed" - rm "${ED}/usr/share/doc/${PF}/COPYING" - - find "${ED}" -name '*.la' -exec rm -f {} + -}