diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2013-02-27 10:56:44 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2013-02-27 10:56:44 +0000 |
commit | c50916df821cedc1e09ed35c49fc12feceb3a33e (patch) | |
tree | 98dcc1f1dae16a3117163f61e0ddeafc45d0c43a /x11-misc/i3status | |
parent | Version bump; simplified ebuild, even though USE=-doc is not working properly... (diff) | |
download | gentoo-2-c50916df821cedc1e09ed35c49fc12feceb3a33e.tar.gz gentoo-2-c50916df821cedc1e09ed35c49fc12feceb3a33e.tar.bz2 gentoo-2-c50916df821cedc1e09ed35c49fc12feceb3a33e.zip |
Version bump
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
Diffstat (limited to 'x11-misc/i3status')
-rw-r--r-- | x11-misc/i3status/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/i3status/i3status-2.7.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/x11-misc/i3status/ChangeLog b/x11-misc/i3status/ChangeLog index 9a5ad0f197c1..65608145d6b4 100644 --- a/x11-misc/i3status/ChangeLog +++ b/x11-misc/i3status/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/i3status # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3status/ChangeLog,v 1.15 2013/01/27 18:31:04 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3status/ChangeLog,v 1.16 2013/02/27 10:56:44 xarthisius Exp $ + +*i3status-2.7 (27 Feb 2013) + + 27 Feb 2013; Kacper Kowalik <xarthisius@gentoo.org> +i3status-2.7.ebuild: + Version bump 27 Jan 2013; Kacper Kowalik <xarthisius@gentoo.org> -i3status-2.5.1.ebuild, i3status-2.6.ebuild, metadata.xml: diff --git a/x11-misc/i3status/i3status-2.7.ebuild b/x11-misc/i3status/i3status-2.7.ebuild new file mode 100644 index 000000000000..4e90a6e0def6 --- /dev/null +++ b/x11-misc/i3status/i3status-2.7.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/i3status/i3status-2.7.ebuild,v 1.1 2013/02/27 10:56:44 xarthisius Exp $ + +EAPI=5 + +inherit toolchain-funcs versionator fcaps + +DESCRIPTION="generates a status bar for dzen2, xmobar or similar" +HOMEPAGE="http://i3wm.org/i3status/" +SRC_URI="http://i3wm.org/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-libs/confuse + >=dev-libs/yajl-2.0.2 + media-libs/alsa-lib + net-wireless/wireless-tools" +DEPEND="${RDEPEND}" + +src_prepare() { + sed -e "/@echo/d" -e "s:@\$(:\$(:g" -e "/setcap/d" \ + -e '/CFLAGS+=-g/d' -i Makefile || die +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +pkg_postinst() { + fcaps cap_net_admin usr/bin/${PN} + elog "You need to install x11-misc/xmobar or x11-misc/dzen to use ${PN}." + elog "Please refer to manual: man ${PN}" +} |