diff options
author | Lennart Kolmodin <kolmodin@gentoo.org> | 2008-09-24 06:11:46 +0000 |
---|---|---|
committer | Lennart Kolmodin <kolmodin@gentoo.org> | 2008-09-24 06:11:46 +0000 |
commit | 1b8d712bba3cfd262353c0f001250f5d7d2391fa (patch) | |
tree | 33eb552cfd07b002393954f593b64b0a2e0f1a9b /x11-misc/xmobar | |
parent | Stable for HPPA (bug #235907). (diff) | |
download | gentoo-2-1b8d712bba3cfd262353c0f001250f5d7d2391fa.tar.gz gentoo-2-1b8d712bba3cfd262353c0f001250f5d7d2391fa.tar.bz2 gentoo-2-1b8d712bba3cfd262353c0f001250f5d7d2391fa.zip |
Bump x11-misc/xmobar to 0.9
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-misc/xmobar')
-rw-r--r-- | x11-misc/xmobar/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xmobar/xmobar-0.9.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/x11-misc/xmobar/ChangeLog b/x11-misc/xmobar/ChangeLog index 24eebaa91bf0..0a5af33f3596 100644 --- a/x11-misc/xmobar/ChangeLog +++ b/x11-misc/xmobar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xmobar # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmobar/ChangeLog,v 1.2 2008/01/01 16:30:03 kolmodin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmobar/ChangeLog,v 1.3 2008/09/24 06:11:46 kolmodin Exp $ + +*xmobar-0.9 (24 Sep 2008) + + 24 Sep 2008; Lennart Kolmodin <kolmodin@gentoo.org> +xmobar-0.9.ebuild: + Bump to xmobar-0.9 *xmobar-0.8-r1 (01 Jan 2008) diff --git a/x11-misc/xmobar/xmobar-0.9.ebuild b/x11-misc/xmobar/xmobar-0.9.ebuild new file mode 100644 index 000000000000..c185c4996238 --- /dev/null +++ b/x11-misc/xmobar/xmobar-0.9.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmobar/xmobar-0.9.ebuild,v 1.1 2008/09/24 06:11:46 kolmodin Exp $ + +CABAL_FEATURES="bin" +inherit haskell-cabal + +DESCRIPTION="A Minimalistic Text Based Status Bar" +HOMEPAGE="http://code.haskell.org/~arossato/xmobar" +SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-lang/ghc-6.6.1 + >=dev-haskell/cabal-1.2 + >=dev-haskell/x11-1.3.0 + dev-haskell/mtl + dev-haskell/parsec + dev-haskell/filepath + dev-haskell/stm" + +src_compile() { + CABAL_CONFIGURE_FLAGS="--flags=-with_xft --flags=-with_utf8" + cabal_src_compile +} + +src_install() { + cabal_src_install + + dodoc xmobar.config-sample README +} |