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/tabbed: ChangeLog tabbed-0.4.1.ebuild
Date: Thu, 23 Aug 2012 03:09:43
Message-Id: 20120823030932.E5EEF203EE@flycatcher.gentoo.org
1 jer 12/08/23 03:09:32
2
3 Modified: ChangeLog
4 Added: tabbed-0.4.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 x11-misc/tabbed/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tabbed/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 18 Jul 2012 17:11:43 -0000 1.2
24 +++ ChangeLog 23 Aug 2012 03:09:32 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/tabbed
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tabbed/ChangeLog,v 1.2 2012/07/18 17:11:43 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tabbed/ChangeLog,v 1.3 2012/08/23 03:09:32 jer Exp $
30 +
31 +*tabbed-0.4.1 (23 Aug 2012)
32 +
33 + 23 Aug 2012; Jeroen Roovers <jer@g.o> +tabbed-0.4.1.ebuild:
34 + Version bump.
35
36 *tabbed-0.4 (18 Jul 2012)
37
38
39
40
41 1.1 x11-misc/tabbed/tabbed-0.4.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/tabbed-0.4.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/tabbed-0.4.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tabbed-0.4.1.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/tabbed/tabbed-0.4.1.ebuild,v 1.1 2012/08/23 03:09:32 jer Exp $
51
52 EAPI="3"
53
54 inherit savedconfig toolchain-funcs
55
56 DESCRIPTION="Simple generic tabbed fronted to xembed aware applications"
57 HOMEPAGE="http://tools.suckless.org/tabbed"
58 SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
59
60 LICENSE="as-is"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 RDEPEND="x11-libs/libX11"
66 DEPEND="
67 x11-proto/xproto
68 ${RDEPEND}
69 "
70
71 src_prepare() {
72 sed config.mk \
73 -e '/^CC/d' \
74 -e 's|/usr/local|/usr|g' \
75 -e 's|^CFLAGS.*|CFLAGS += -std=c99 -pedantic -Wall $(INCS) $(CPPFLAGS)|g' \
76 -e 's|^LDFLAGS.*|LDFLAGS += $(LIBS)|g' \
77 -e 's|^LIBS.*|LIBS = -lX11|g' \
78 -e 's|{|(|g;s|}|)|g' \
79 -i || die
80
81 sed Makefile \
82 -e 's|{|(|g;s|}|)|g' \
83 -e '/^[[:space:]]*@echo/d' \
84 -e 's|^ @| |g' \
85 -i || die
86
87 restore_config config.h
88 }
89
90 src_compile() {
91 emake CC=$(tc-getCC) || die "emake compile failed"
92 }
93 src_install() {
94 emake DESTDIR="${D}" install || die "emake install failed"
95 save_config config.h
96 }