Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/lineak-xosdplugin: ChangeLog lineak-xosdplugin-0.9.0-r1.ebuild
Date: Fri, 03 Sep 2010 07:05:43
Message-Id: 20100903070537.B6BCD20051@flycatcher.gentoo.org
1 xarthisius 10/09/03 07:05:37
2
3 Modified: ChangeLog
4 Added: lineak-xosdplugin-0.9.0-r1.ebuild
5 Log:
6 Respect LDFLAGS wrt bug 334655. Thanks to Diego for the report.
7
8 (Portage version: 2.2_rc73/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.28 x11-misc/lineak-xosdplugin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lineak-xosdplugin/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lineak-xosdplugin/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lineak-xosdplugin/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/lineak-xosdplugin/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 21 Mar 2009 21:45:39 -0000 1.27
24 +++ ChangeLog 3 Sep 2010 07:05:37 -0000 1.28
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-misc/lineak-xosdplugin
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lineak-xosdplugin/ChangeLog,v 1.27 2009/03/21 21:45:39 nelchael Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lineak-xosdplugin/ChangeLog,v 1.28 2010/09/03 07:05:37 xarthisius Exp $
31 +
32 +*lineak-xosdplugin-0.9.0-r1 (03 Sep 2010)
33 +
34 + 03 Sep 2010; Kacper Kowalik <xarthisius@g.o>
35 + +lineak-xosdplugin-0.9.0-r1.ebuild:
36 + Respect LDFLAGS wrt bug 334655. Thanks to Diego for the report.
37
38 21 Mar 2009; Krzysiek Pawlik <nelchael@g.o>
39 -lineak-xosdplugin-0.9.0_pre1.ebuild:
40
41
42
43 1.1 x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: lineak-xosdplugin-0.9.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/lineak-xosdplugin/lineak-xosdplugin-0.9.0-r1.ebuild,v 1.1 2010/09/03 07:05:37 xarthisius Exp $
53
54 inherit eutils multilib
55
56 MY_P=${P/.0/}
57
58 DESCRIPTION="Xosd plugin for LINEAK"
59 HOMEPAGE="http://lineak.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/lineak/${MY_P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="debug"
66
67 DEPEND="=x11-misc/lineakd-${PV}*
68 x11-libs/xosd"
69 RDEPEND="${DEPEND}"
70
71 S=${WORKDIR}/${MY_P}
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}"/${P}-gcc43.patch
77 }
78
79 src_compile() {
80 econf $(use_enable debug) --with-x
81 emake LDFLAGS="${LDFLAGS}" || die
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" \
86 PLUGINDIR=/usr/$(get_libdir)/lineakd/plugins \
87 install || die
88 dodoc AUTHORS README || die
89 }