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 2E671138335 for ; Thu, 23 May 2019 17:27:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D904E0896; Thu, 23 May 2019 17:27:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C605AE0831 for ; Thu, 23 May 2019 17:27:25 +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 9A117344EE2 for ; Thu, 23 May 2019 17:27:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F7B25F8 for ; Thu, 23 May 2019 17:27:22 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1558632436.01adaba53d18ea4912000ebf5b4d3c4608bd271b.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/linux-logo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/linux-logo/linux-logo-5.11-r3.ebuild X-VCS-Directories: app-misc/linux-logo/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 01adaba53d18ea4912000ebf5b4d3c4608bd271b X-VCS-Branch: master Date: Thu, 23 May 2019 17:27:22 +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: ff98fd02-048d-4202-b98c-4e00a006f648 X-Archives-Hash: c5d324c31272de86aea7d4d88b03e0da commit: 01adaba53d18ea4912000ebf5b4d3c4608bd271b Author: Bernard Cafarelli gentoo org> AuthorDate: Thu May 23 17:04:48 2019 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Thu May 23 17:27:16 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01adaba5 app-misc/linux-logo: drop old Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Bernard Cafarelli gentoo.org> app-misc/linux-logo/linux-logo-5.11-r3.ebuild | 76 --------------------------- 1 file changed, 76 deletions(-) diff --git a/app-misc/linux-logo/linux-logo-5.11-r3.ebuild b/app-misc/linux-logo/linux-logo-5.11-r3.ebuild deleted file mode 100644 index 6406607e1ca..00000000000 --- a/app-misc/linux-logo/linux-logo-5.11-r3.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit toolchain-funcs systemd - -MY_P=${PN/-/_}-${PV} -S=${WORKDIR}/${MY_P} -DESCRIPTION="A utility that displays an ANSI/ASCII logo and some system information" -HOMEPAGE="http://www.deater.net/weave/vmwprod/linux_logo/" -SRC_URI="http://www.deater.net/weave/vmwprod/linux_logo/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm hppa ~ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux" -IUSE="nls" - -RDEPEND="nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_prepare() { - cp "${FILESDIR}"/logo-config "${S}/logo_config" || die - cp "${FILESDIR}"/linux_logo_creator "${S}/" || die - cp "${FILESDIR}"/linux-logo.service "${S}/" || die - cp "${FILESDIR}"/gentoo-*.logo "${S}"/logos/ || die - - # Remove warn_unused_result warning - sed -i -e 's/FILE \*fff;/FILE \*fff;\n char *stemp;/' \ - -e 's/fgets/stemp=fgets/' "${S}"/load_logo.c || die -} - -src_configure() { - ARCH="" ./configure --prefix="${ED}"/usr || die -} - -src_compile() { - emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" -} - -src_install() { - emake install - - dodoc BUGS README README.CUSTOM_LOGOS TODO USAGE LINUX_LOGO.FAQ - - dobin "${FILESDIR}"/linux_logo_creator - newinitd "${FILESDIR}"/${PN}.init.d ${PN} - newconfd "${FILESDIR}"/${P}.conf ${PN} - - # systemd support - systemd_newunit "${FILESDIR}/linux-logo.service" "linux-logo.service" -} - -pkg_postinst() { - echo - elog "Linux_logo ebuild for Gentoo comes with two Gentoo logos." - elog "" - elog "To display the first Gentoo logo type: linux_logo -L gentoo" - elog "To display the second Gentoo logo type: linux_logo -L gentoo-alt" - elog "To display all the logos available type: linux_logo -L list." - elog "" - elog "To start linux_logo on boot, please type:" - elog " rc-update add linux-logo default" - elog "or for systemd" - elog " systemctl enable linux-logo.service" - elog "which uses the settings found in" - elog " /etc/conf.d/linux-logo" - echo -} - -pkg_prerm() { - # Restore issue files - mv /etc/issue.linux-logo.backup /etc/issue 2> /dev/null - mv /etc/issue.net.linux-logo.backup /etc/issue.net 2> /dev/null -}