Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/dmenu: dmenu-4.5.ebuild ChangeLog
Date: Mon, 09 Jan 2012 13:04:48
Message-Id: 20120109130437.914202004B@flycatcher.gentoo.org
1 jer 12/01/09 13:04:37
2
3 Modified: ChangeLog
4 Added: dmenu-4.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.78 x11-misc/dmenu/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/dmenu/ChangeLog?rev=1.78&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/dmenu/ChangeLog?rev=1.78&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/dmenu/ChangeLog?r1=1.77&r2=1.78
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/dmenu/ChangeLog,v
20 retrieving revision 1.77
21 retrieving revision 1.78
22 diff -u -r1.77 -r1.78
23 --- ChangeLog 4 Jan 2012 20:23:29 -0000 1.77
24 +++ ChangeLog 9 Jan 2012 13:04:37 -0000 1.78
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/dmenu
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/ChangeLog,v 1.77 2012/01/04 20:23:29 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/dmenu/ChangeLog,v 1.78 2012/01/09 13:04:37 jer Exp $
30 +
31 +*dmenu-4.5 (09 Jan 2012)
32 +
33 + 09 Jan 2012; Jeroen Roovers <jer@g.o> +dmenu-4.5.ebuild:
34 + Version bump.
35
36 04 Jan 2012; Brent Baude <ranger@g.o> dmenu-4.4.1.ebuild:
37 Marking dmenu-4.4.1 ppc for bug 389219
38
39
40
41 1.1 x11-misc/dmenu/dmenu-4.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/dmenu/dmenu-4.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/dmenu/dmenu-4.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dmenu-4.5.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-misc/dmenu/dmenu-4.5.ebuild,v 1.1 2012/01/09 13:04:37 jer Exp $
51
52 EAPI="4"
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="a generic, highly customizable, and efficient menu for the X Window System"
57 HOMEPAGE="http://www.suckless.org/programs/dmenu.html"
58 SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
63 IUSE="xinerama"
64
65 DEPEND="x11-libs/libX11
66 xinerama? ( x11-libs/libXinerama )"
67 RDEPEND="${DEPEND}"
68
69 src_prepare() {
70 sed -i \
71 -e "s/CFLAGS = -ansi -pedantic -Wall -Os/CFLAGS += -ansi -pedantic -Wall/" \
72 -e "s/LDFLAGS = -s/LDFLAGS +=/" \
73 -e "s/XINERAMALIBS =/XINERAMALIBS ?=/" \
74 -e "s/XINERAMAFLAGS =/XINERAMAFLAGS ?=/" \
75 config.mk || die
76 }
77
78 src_compile() {
79 if use xinerama; then
80 emake CC=$(tc-getCC)
81 else
82 emake CC=$(tc-getCC) XINERAMAFLAGS="" XINERAMALIBS=""
83 fi
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" PREFIX="/usr" install
88 }