Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/smartmontools: ChangeLog smartmontools-5.38-r1.ebuild
Date: Wed, 26 Aug 2009 20:32:02
Message-Id: E1MgRbE-0003M8-2p@stork.gentoo.org
1 robbat2 09/08/26 23:08:16
2
3 Modified: ChangeLog
4 Added: smartmontools-5.38-r1.ebuild
5 Log:
6 Per bug #140192 and bug #282371: re-add the dep on mailx, and put it behind USE=!minimal.
7 (Portage version: 2.2_rc38/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.82 sys-apps/smartmontools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/smartmontools/ChangeLog?rev=1.82&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/smartmontools/ChangeLog?rev=1.82&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/smartmontools/ChangeLog?r1=1.81&r2=1.82
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v
19 retrieving revision 1.81
20 retrieving revision 1.82
21 diff -p -w -b -B -u -u -r1.81 -r1.82
22 --- ChangeLog 1 May 2009 13:47:34 -0000 1.81
23 +++ ChangeLog 26 Aug 2009 23:08:15 -0000 1.82
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-apps/smartmontools
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.81 2009/05/01 13:47:34 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.82 2009/08/26 23:08:15 robbat2 Exp $
29 +
30 +*smartmontools-5.38-r1 (26 Aug 2009)
31 +
32 + 26 Aug 2009; Robin H. Johnson <robbat2@g.o>
33 + +smartmontools-5.38-r1.ebuild:
34 + Per bug #140192 and bug #282371: re-add the dep on mailx, and put it
35 + behind USE=!minimal.
36
37 01 May 2009; Robin H. Johnson <robbat2@g.o> metadata.xml,
38 smartmontools-5.38.ebuild:
39
40
41
42 1.1 sys-apps/smartmontools/smartmontools-5.38-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/smartmontools/smartmontools-5.38-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/smartmontools/smartmontools-5.38-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: smartmontools-5.38-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-5.38-r1.ebuild,v 1.1 2009/08/26 23:08:15 robbat2 Exp $
52
53 inherit flag-o-matic
54
55 DESCRIPTION="control and monitor storage systems using the Self-Monitoring, Analysis and Reporting Technology System (S.M.A.R.T.)"
56 HOMEPAGE="http://smartmontools.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
62 IUSE="static minimal"
63
64 RDEPEND="!minimal? ( virtual/mailx )"
65 DEPEND=""
66
67 src_compile() {
68 use minimal && einfo "Skipping the monitoring daemon for minimal build."
69 use static && append-ldflags -static
70 econf || die
71 emake || die
72 }
73
74 src_install() {
75 dosbin smartctl || die "dosbin smartctl"
76 dodoc AUTHORS CHANGELOG NEWS README TODO WARNINGS
77 doman smartctl.8
78 if ! use minimal; then
79 dosbin smartd || die "dosbin smartd"
80 doman smartd*.[58]
81 newdoc smartd.conf smartd.conf.example
82 docinto examplescripts
83 dodoc examplescripts/*
84 rm -f "${D}"/usr/share/doc/${PF}/examplescripts/Makefile*
85
86 insinto /etc
87 doins smartd.conf
88
89 newinitd "${FILESDIR}"/smartd.rc smartd
90 newconfd "${FILESDIR}"/smartd.confd smartd
91 fi
92 }