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.6.ebuild
Date: Wed, 22 Jan 2014 17:15:09
Message-Id: 20140122155743.7E0F12004C@flycatcher.gentoo.org
1 jer 14/01/22 15:57:43
2
3 Modified: ChangeLog
4 Added: tabbed-0.6.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.8 x11-misc/tabbed/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tabbed/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 4 Jul 2013 15:38:21 -0000 1.7
24 +++ ChangeLog 22 Jan 2014 15:57:43 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/tabbed
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tabbed/ChangeLog,v 1.7 2013/07/04 15:38:21 jer Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tabbed/ChangeLog,v 1.8 2014/01/22 15:57:43 jer Exp $
31 +
32 +*tabbed-0.6 (22 Jan 2014)
33 +
34 + 22 Jan 2014; Jeroen Roovers <jer@g.o> +tabbed-0.6.ebuild:
35 + Version bump.
36
37 04 Jul 2013; Jeroen Roovers <jer@g.o> -tabbed-0.4.1.ebuild:
38 Old.
39
40
41
42 1.1 x11-misc/tabbed/tabbed-0.6.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/tabbed-0.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tabbed/tabbed-0.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tabbed-0.6.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tabbed/tabbed-0.6.ebuild,v 1.1 2014/01/22 15:57:43 jer Exp $
52
53 EAPI=5
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="MIT"
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 += $(CFLAGS) $(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)
92 }
93 src_install() {
94 default
95 save_config config.h
96 }