Gentoo Archives: gentoo-commits

From: "Federico Ferri (mescalinum)" <mescalinum@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/synce-hal: ChangeLog synce-hal-0.13.ebuild
Date: Tue, 27 Jan 2009 02:32:26
Message-Id: E1LRdkT-0007Yy-Hk@stork.gentoo.org
1 mescalinum 09/01/27 02:32:21
2
3 Modified: ChangeLog synce-hal-0.13.ebuild
4 Log:
5 fix install location of hal scripts
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.6 app-pda/synce-hal/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-hal/ChangeLog?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-hal/ChangeLog?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-hal/ChangeLog?r1=1.5&r2=1.6
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-pda/synce-hal/ChangeLog,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ChangeLog 21 Jan 2009 11:49:29 -0000 1.5
22 +++ ChangeLog 27 Jan 2009 02:32:21 -0000 1.6
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-pda/synce-hal
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-hal/ChangeLog,v 1.5 2009/01/21 11:49:29 mescalinum Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-hal/ChangeLog,v 1.6 2009/01/27 02:32:21 mescalinum Exp $
28 +
29 + 27 Jan 2009; Federico Ferri <mescalinum@g.o> synce-hal-0.13.ebuild:
30 + fix install location of hal scripts
31
32 21 Jan 2009; Federico Ferri <mescalinum@g.o> synce-hal-0.13.ebuild:
33 better version handling
34
35
36
37 1.4 app-pda/synce-hal/synce-hal-0.13.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-hal/synce-hal-0.13.ebuild?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-hal/synce-hal-0.13.ebuild?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-hal/synce-hal-0.13.ebuild?r1=1.3&r2=1.4
42
43 Index: synce-hal-0.13.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-pda/synce-hal/synce-hal-0.13.ebuild,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- synce-hal-0.13.ebuild 21 Jan 2009 11:49:29 -0000 1.3
50 +++ synce-hal-0.13.ebuild 27 Jan 2009 02:32:21 -0000 1.4
51 @@ -1,8 +1,8 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-hal/synce-hal-0.13.ebuild,v 1.3 2009/01/21 11:49:29 mescalinum Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-hal/synce-hal-0.13.ebuild,v 1.4 2009/01/27 02:32:21 mescalinum Exp $
56
57 -inherit versionator
58 +inherit multilib versionator
59
60 DESCRIPTION="SynCE - hal connection manager"
61 HOMEPAGE="http://sourceforge.net/projects/synce/"
62 @@ -30,9 +30,14 @@
63
64 src_install() {
65 make DESTDIR="${D}" install || die
66 + dodoc AUTHORS README ChangeLog || die
67
68 # fix collision with app-pda/synce-serial, bug 246675
69 - rm "${D}/usr/libexec/synce-serial-chat"
70 + rm -f "${D}/usr/libexec/synce-serial-chat"
71
72 - dodoc AUTHORS README ChangeLog
73 + # fix install location of hal scripts
74 + local hal_dir="/usr/$(get_libdir)/hal"
75 + local hal_scripts_dir="${hal_dir}/scripts"
76 + dodir "${hal_scripts_dir}"
77 + mv "${D}${hal_dir}"/hal-synce-* "${D}${hal_scripts_dir}/"
78 }