Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/uevt: uevt-2.1_p20110313.ebuild
Date: Wed, 30 Mar 2011 16:24:30
Message-Id: 20110330162419.405A220054@flycatcher.gentoo.org
1 ssuominen 11/03/30 16:24:19
2
3 Modified: uevt-2.1_p20110313.ebuild
4 Log:
5 eapi4 is nice
6
7 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 sys-apps/uevt/uevt-2.1_p20110313.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/uevt/uevt-2.1_p20110313.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/uevt/uevt-2.1_p20110313.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/uevt/uevt-2.1_p20110313.ebuild?r1=1.2&r2=1.3
15
16 Index: uevt-2.1_p20110313.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/uevt/uevt-2.1_p20110313.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- uevt-2.1_p20110313.ebuild 17 Mar 2011 15:27:16 -0000 1.2
23 +++ uevt-2.1_p20110313.ebuild 30 Mar 2011 16:24:19 -0000 1.3
24 @@ -1,8 +1,8 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/uevt/uevt-2.1_p20110313.ebuild,v 1.2 2011/03/17 15:27:16 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/uevt/uevt-2.1_p20110313.ebuild,v 1.3 2011/03/30 16:24:19 ssuominen Exp $
29
30 -EAPI=3
31 +EAPI=4
32 inherit autotools
33
34 DESCRIPTION="A lightweight, desktop-independant daemon for disks mounting and power managing"
35 @@ -28,16 +28,9 @@
36 dev-util/pkgconfig
37 sys-devel/gettext"
38
39 -src_prepare() {
40 - eautoreconf
41 -}
42 -
43 -src_configure() {
44 +pkg_setup() {
45 export VALAC="$(type -P valac-0.12)"
46 - econf
47 + DOCS="AUTHORS ChangeLog README"
48 }
49
50 -src_install() {
51 - emake DESTDIR="${D}" install || die
52 - dodoc AUTHORS ChangeLog README
53 -}
54 +src_prepare() { eautoreconf; }