diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-05-10 16:45:05 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-05-10 16:45:05 +0000 |
commit | c8d6d763b1f8531caae20c87fef546b86b3ae793 (patch) | |
tree | 851ee8cafb1dc6a1b55c4dc6e4f4bea50c9149d0 /x11-misc/tabbed | |
parent | Stable for HPPA (bug #467188). (diff) | |
download | gentoo-2-c8d6d763b1f8531caae20c87fef546b86b3ae793.tar.gz gentoo-2-c8d6d763b1f8531caae20c87fef546b86b3ae793.tar.bz2 gentoo-2-c8d6d763b1f8531caae20c87fef546b86b3ae793.zip |
Version bump.
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-misc/tabbed')
-rw-r--r-- | x11-misc/tabbed/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/tabbed/tabbed-0.5.ebuild | 48 |
2 files changed, 55 insertions, 3 deletions
diff --git a/x11-misc/tabbed/ChangeLog b/x11-misc/tabbed/ChangeLog index d5333af2cbaa..13c0af1c5c62 100644 --- a/x11-misc/tabbed/ChangeLog +++ b/x11-misc/tabbed/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/tabbed -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tabbed/ChangeLog,v 1.5 2012/12/10 19:01:34 jer Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tabbed/ChangeLog,v 1.6 2013/05/10 16:45:05 jer Exp $ + +*tabbed-0.5 (10 May 2013) + + 10 May 2013; Jeroen Roovers <jer@gentoo.org> +tabbed-0.5.ebuild: + Version bump. 10 Dec 2012; Jeroen Roovers <jer@gentoo.org> -tabbed-0.4.ebuild, tabbed-0.4.1.ebuild: @@ -25,4 +30,3 @@ 20 Apr 2011; Jeroen Roovers <jer@gentoo.org> +tabbed-0.3.ebuild, +metadata.xml: Initial commit, thanks to Aidan Taniane (bug #364245). - diff --git a/x11-misc/tabbed/tabbed-0.5.ebuild b/x11-misc/tabbed/tabbed-0.5.ebuild new file mode 100644 index 000000000000..5b3417af1c37 --- /dev/null +++ b/x11-misc/tabbed/tabbed-0.5.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tabbed/tabbed-0.5.ebuild,v 1.1 2013/05/10 16:45:05 jer Exp $ + +EAPI=5 +inherit savedconfig toolchain-funcs + +DESCRIPTION="Simple generic tabbed fronted to xembed aware applications" +HOMEPAGE="http://tools.suckless.org/tabbed" +SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11" +DEPEND=" + x11-proto/xproto + ${RDEPEND} +" + +src_prepare() { + sed config.mk \ + -e '/^CC/d' \ + -e 's|/usr/local|/usr|g' \ + -e 's|^CFLAGS.*|CFLAGS += -std=c99 -pedantic -Wall $(INCS) $(CPPFLAGS)|g' \ + -e 's|^LDFLAGS.*|LDFLAGS += $(LIBS)|g' \ + -e 's|^LIBS.*|LIBS = -lX11|g' \ + -e 's|{|(|g;s|}|)|g' \ + -i || die + + sed Makefile \ + -e 's|{|(|g;s|}|)|g' \ + -e '/^[[:space:]]*@echo/d' \ + -e 's|^ @| |g' \ + -i || die + + restore_config config.h +} + +src_compile() { + emake CC=$(tc-getCC) +} +src_install() { + default + save_config config.h +} |