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 439E5158089 for ; Wed, 13 Sep 2023 03:49:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E79272BC147; Wed, 13 Sep 2023 03:49:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D07BA2BC147 for ; Wed, 13 Sep 2023 03:49:22 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 24BD3335CD4 for ; Wed, 13 Sep 2023 03:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4B211194 for ; Wed, 13 Sep 2023 03:49:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1694576883.a86b668a88739586feda1e39635e2c533105d14e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ide-smart/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ide-smart/ide-smart-1.4-r3.ebuild X-VCS-Directories: app-admin/ide-smart/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a86b668a88739586feda1e39635e2c533105d14e X-VCS-Branch: master Date: Wed, 13 Sep 2023 03:49:19 +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: 44220c34-aafb-4ce6-bb44-7cdbfc830294 X-Archives-Hash: e736d3f08793db8588c5ae1bc744034f commit: a86b668a88739586feda1e39635e2c533105d14e Author: Leonardo Hernández Hernández proton me> AuthorDate: Sun Sep 10 23:40:42 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 13 03:48:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a86b668a app-admin/ide-smart: update EAPI 6 -> 8 Signed-off-by: Leonardo Hernández Hernández proton.me> Signed-off-by: Sam James gentoo.org> app-admin/ide-smart/ide-smart-1.4-r3.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app-admin/ide-smart/ide-smart-1.4-r3.ebuild b/app-admin/ide-smart/ide-smart-1.4-r3.ebuild new file mode 100644 index 000000000000..813ff8c814dc --- /dev/null +++ b/app-admin/ide-smart/ide-smart-1.4-r3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit edo toolchain-funcs + +DESCRIPTION="A tool to read SMART information from harddiscs" +HOMEPAGE="http://www.linalco.com/comunidad.html http://www.linux-ide.org/smart.html" +SRC_URI="http://www.linalco.com/ragnar/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +src_compile() { + edo $(tc-getCC) ${CFLAGS} ${CPPFLAGS} -Wall ${LDFLAGS} -o ${PN} ${PN}.c +} + +src_install() { + dobin ide-smart + doman ide-smart.8 + dodoc README +}