Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ide-smart/
Date: Sun, 06 Aug 2017 16:37:11
Message-Id: 1502037410.23c24c7d829842ecf266a794e779eaf1e6db07ed.amynka@gentoo
1 commit: 23c24c7d829842ecf266a794e779eaf1e6db07ed
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 6 16:36:14 2017 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 6 16:36:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23c24c7d
7
8 app-admin/ide-smart: eapi bump to 6
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 app-admin/ide-smart/ide-smart-1.4-r2.ebuild | 25 +++++++++++++++++++++++++
13 1 file changed, 25 insertions(+)
14
15 diff --git a/app-admin/ide-smart/ide-smart-1.4-r2.ebuild b/app-admin/ide-smart/ide-smart-1.4-r2.ebuild
16 new file mode 100644
17 index 00000000000..d6ec3995888
18 --- /dev/null
19 +++ b/app-admin/ide-smart/ide-smart-1.4-r2.ebuild
20 @@ -0,0 +1,25 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit toolchain-funcs
27 +
28 +DESCRIPTION="A tool to read SMART information from harddiscs"
29 +HOMEPAGE="http://www.linalco.com/comunidad.html http://www.linux-ide.org/smart.html"
30 +SRC_URI="http://www.linalco.com/ragnar/${P}.tar.gz"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
35 +IUSE=""
36 +
37 +src_compile() {
38 + $(tc-getCC) ${CFLAGS} -Wall ${LDFLAGS} -o ${PN} ${PN}.c || die "compile"
39 +}
40 +
41 +src_install() {
42 + dobin ide-smart || die
43 + doman ide-smart.8
44 + dodoc README
45 +}