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-wm/windowlab: windowlab-1.40.ebuild ChangeLog
Date: Sun, 30 May 2010 15:40:30
Message-Id: 20100530154026.0F2D32CF37@corvid.gentoo.org
1 xarthisius 10/05/30 15:40:25
2
3 Modified: ChangeLog
4 Added: windowlab-1.40.ebuild
5 Log:
6 Version bump. Thanks to Tomáš Hlušička <tomas.hlusicka@××××××.cz> for report
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.29 x11-wm/windowlab/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/windowlab/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/windowlab/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/windowlab/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-wm/windowlab/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 9 Jan 2009 15:42:49 -0000 1.28
23 +++ ChangeLog 30 May 2010 15:40:25 -0000 1.29
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-wm/windowlab
26 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowlab/ChangeLog,v 1.28 2009/01/09 15:42:49 remi Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowlab/ChangeLog,v 1.29 2010/05/30 15:40:25 xarthisius Exp $
30 +
31 +*windowlab-1.40 (30 May 2010)
32 +
33 + 30 May 2010; Kacper Kowalik <xarthisius@g.o>
34 + +windowlab-1.40.ebuild, +files/windowlab-1.40-gentoo.diff:
35 + Version bump. Thanks to Tomáš Hlušička <tomas.hlusicka@××××××.cz> for
36 + report
37
38 09 Jan 2009; Rémi Cardona <remi@g.o> windowlab-1.34.ebuild:
39 Change virtual/xft dependency to x11-libs/libXft, bug 253771.
40
41
42
43 1.1 x11-wm/windowlab/windowlab-1.40.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/windowlab/windowlab-1.40.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/windowlab/windowlab-1.40.ebuild?rev=1.1&content-type=text/plain
47
48 Index: windowlab-1.40.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-wm/windowlab/windowlab-1.40.ebuild,v 1.1 2010/05/30 15:40:25 xarthisius Exp $
53
54 EAPI="2"
55
56 inherit eutils toolchain-funcs
57
58 DESCRIPTION="small and simple window manager of novel design."
59 HOMEPAGE="http://www.nickgravgaard.com/windowlab/"
60 SRC_URI="http://www.nickgravgaard.com/${PN}/${P}.tar"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~mips ~ppc ~x86"
65 IUSE="truetype"
66
67 RDEPEND="truetype? ( x11-libs/libXft )
68 x11-libs/libXext"
69 DEPEND="${RDEPEND}
70 x11-proto/xextproto
71 dev-util/pkgconfig"
72
73 pkg_setup() {
74 if use truetype ; then
75 export DEFINES=-DXFT
76 export EXTRA_INC=$(pkg-config --cflags xft)
77 export EXTRA_LIBS=$(pkg-config --libs xft)
78 fi
79 tc-export CC
80 }
81
82 src_prepare() {
83 epatch "${FILESDIR}/${PN}-1.34-fixed-font.patch" \
84 "${FILESDIR}"/${P}-gentoo.diff
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die
89 dodoc CHANGELOG README TODO || die
90
91 exeinto /etc/X11/Sessions
92 cat <<- EOF > "${T}"/${PN}
93 #!/bin/sh
94 exec /usr/bin/${PN}
95 EOF
96 doexe "${T}"/${PN}
97 }
98
99 pkg_postinst() {
100 elog "${PN}'s menu config file has been changed from"
101 elog "/etc/X11/${PN}/menurc to /etc/X11/${PN}/${PN}.menurc"
102 }