Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/smartmontools: smartmontools-5.43.ebuild smartmontools-9999.ebuild ChangeLog
Date: Sat, 25 Aug 2012 22:50:34
Message-Id: 20120825225024.4ED8320730@flycatcher.gentoo.org
1 vapier 12/08/25 22:50:24
2
3 Modified: smartmontools-5.43.ebuild smartmontools-9999.ebuild
4 ChangeLog
5 Log:
6 Fix paths encoded in man pages #432668 by Diego Elio Pettenò.
7
8 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 sys-apps/smartmontools/smartmontools-5.43.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-5.43.ebuild?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-5.43.ebuild?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-5.43.ebuild?r1=1.4&r2=1.5
16
17 Index: smartmontools-5.43.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-5.43.ebuild,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- smartmontools-5.43.ebuild 19 Aug 2012 23:13:57 -0000 1.4
24 +++ smartmontools-5.43.ebuild 25 Aug 2012 22:50:24 -0000 1.5
25 @@ -1,6 +1,6 @@
26 # Copyright 1999-2012 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-5.43.ebuild,v 1.4 2012/08/19 23:13:57 ottxor Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-5.43.ebuild,v 1.5 2012/08/25 22:50:24 vapier Exp $
30
31 EAPI="3"
32
33 @@ -37,9 +37,11 @@
34 src_configure() {
35 use minimal && einfo "Skipping the monitoring daemon for minimal build."
36 use static && append-ldflags -static
37 + # The build installs /etc/init.d/smartd, but we clobber it
38 + # in our src_install, so no need to manually delete it.
39 econf \
40 --with-docdir="${EPREFIX}/usr/share/doc/${PF}" \
41 - --with-initscriptdir="/toss-it-away" \
42 + --with-initscriptdir="${EPREFIX}/etc/init.d" \
43 $(use_with caps libcap-ng) \
44 $(use_with selinux) \
45 $(systemd_with_unitdir)
46 @@ -51,7 +53,6 @@
47 doman smartctl.8
48 else
49 emake install DESTDIR="${D}" || die
50 - rm -rf "${ED}"/toss-it-away
51 newinitd "${FILESDIR}"/smartd.rc smartd
52 newconfd "${FILESDIR}"/smartd.confd smartd
53 fi
54
55
56
57 1.12 sys-apps/smartmontools/smartmontools-9999.ebuild
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-9999.ebuild?rev=1.12&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-9999.ebuild?rev=1.12&content-type=text/plain
61 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-9999.ebuild?r1=1.11&r2=1.12
62
63 Index: smartmontools-9999.ebuild
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-9999.ebuild,v
66 retrieving revision 1.11
67 retrieving revision 1.12
68 diff -u -r1.11 -r1.12
69 --- smartmontools-9999.ebuild 19 Aug 2012 23:13:57 -0000 1.11
70 +++ smartmontools-9999.ebuild 25 Aug 2012 22:50:24 -0000 1.12
71 @@ -1,6 +1,6 @@
72 # Copyright 1999-2012 Gentoo Foundation
73 # Distributed under the terms of the GNU General Public License v2
74 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-9999.ebuild,v 1.11 2012/08/19 23:13:57 ottxor Exp $
75 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-9999.ebuild,v 1.12 2012/08/25 22:50:24 vapier Exp $
76
77 EAPI="3"
78
79 @@ -37,9 +37,11 @@
80 src_configure() {
81 use minimal && einfo "Skipping the monitoring daemon for minimal build."
82 use static && append-ldflags -static
83 + # The build installs /etc/init.d/smartd, but we clobber it
84 + # in our src_install, so no need to manually delete it.
85 econf \
86 --with-docdir="${EPREFIX}/usr/share/doc/${PF}" \
87 - --with-initscriptdir="/toss-it-away" \
88 + --with-initscriptdir="${EPREFIX}/etc/init.d" \
89 $(use_with caps libcap-ng) \
90 $(use_with selinux) \
91 $(systemd_with_unitdir)
92 @@ -51,7 +53,6 @@
93 doman smartctl.8
94 else
95 emake install DESTDIR="${D}" || die
96 - rm -rf "${ED}"/toss-it-away
97 newinitd "${FILESDIR}"/smartd.rc smartd
98 newconfd "${FILESDIR}"/smartd.confd smartd
99 fi
100
101
102
103 1.117 sys-apps/smartmontools/ChangeLog
104
105 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/ChangeLog?rev=1.117&view=markup
106 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/ChangeLog?rev=1.117&content-type=text/plain
107 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/ChangeLog?r1=1.116&r2=1.117
108
109 Index: ChangeLog
110 ===================================================================
111 RCS file: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v
112 retrieving revision 1.116
113 retrieving revision 1.117
114 diff -u -r1.116 -r1.117
115 --- ChangeLog 19 Aug 2012 23:13:57 -0000 1.116
116 +++ ChangeLog 25 Aug 2012 22:50:24 -0000 1.117
117 @@ -1,6 +1,10 @@
118 # ChangeLog for sys-apps/smartmontools
119 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
120 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.116 2012/08/19 23:13:57 ottxor Exp $
121 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.117 2012/08/25 22:50:24 vapier Exp $
122 +
123 + 25 Aug 2012; Mike Frysinger <vapier@g.o> smartmontools-5.43.ebuild,
124 + smartmontools-9999.ebuild:
125 + Fix paths encoded in man pages #432668 by Diego Elio Pettenò.
126
127 19 Aug 2012; Christoph Junghans <ottxor@g.o> smartmontools-5.43.ebuild,
128 smartmontools-9999.ebuild: