Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/monto: ChangeLog monto-0.1.1-r1.ebuild
Date: Fri, 30 Nov 2012 14:50:03
Message-Id: 20121130144950.3676D20C65@flycatcher.gentoo.org
1 voyageur 12/11/30 14:49:50
2
3 Modified: ChangeLog
4 Added: monto-0.1.1-r1.ebuild
5 Log:
6 Clean ebuild, respect CC, reported by ago in bug #444942
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
9
10 Revision Changes Path
11 1.4 x11-plugins/monto/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/monto/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/monto/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/monto/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/monto/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 27 Nov 2012 13:38:10 -0000 1.3
24 +++ ChangeLog 30 Nov 2012 14:49:50 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-plugins/monto
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/monto/ChangeLog,v 1.3 2012/11/27 13:38:10 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/monto/ChangeLog,v 1.4 2012/11/30 14:49:50 voyageur Exp $
30 +
31 +*monto-0.1.1-r1 (30 Nov 2012)
32 +
33 + 30 Nov 2012; Bernard Cafarelli <voyageur@g.o> +monto-0.1.1-r1.ebuild:
34 + Clean ebuild, respect CC, reported by ago in bug #444942
35
36 27 Nov 2012; Agostino Sarubbo <ago@g.o> monto-0.1.1.ebuild:
37 Add ~amd64
38
39
40
41 1.1 x11-plugins/monto/monto-0.1.1-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/monto/monto-0.1.1-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/monto/monto-0.1.1-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: monto-0.1.1-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/monto/monto-0.1.1-r1.ebuild,v 1.1 2012/11/30 14:49:50 voyageur Exp $
51
52 EAPI=5
53 inherit eutils toolchain-funcs
54
55 DESCRIPTION="a simple manual device mounter (up to four devices)"
56 HOMEPAGE="http://dockapps.windowmaker.org/file.php/id/274"
57 SRC_URI="http://dockapps.windowmaker.org/download.php/id/274/${P}.tar.gz"
58 LICENSE="GPL-2"
59 SLOT="0"
60 IUSE=""
61 KEYWORDS="~amd64 ~x86"
62 RDEPEND="x11-libs/libX11
63 x11-libs/libXext
64 x11-libs/libXpm"
65 DEPEND="${RDEPEND}
66 x11-proto/xproto
67 x11-proto/xextproto"
68
69 S="${S}/src"
70
71 src_prepare() {
72 sed -i -e "s/-o monto/\$(LDFLAGS) -o monto/" \
73 -e 's/gcc/$(CC)/' Makefile || die "sed failed"
74 }
75
76 src_compile() {
77 tc-export CC
78 emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
79 }
80
81 src_install() {
82 dodoc ../AUTHORS ../NEWS ../README
83 dobin ${PN}
84 }