blob: 9003aef886ab130b541122261a44bf398aa0c59f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# 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.8-r1.ebuild,v 1.1 2008/01/01 16:30:03 kolmodin Exp $
CABAL_FEATURES="bin"
CABAL_MIN_VERSION=1.2
inherit haskell-cabal
DESCRIPTION="A Minimalistic Text Based Status Bar"
HOMEPAGE="http://gorgias.mine.nu/xmobar/"
SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 -sparc ~x86"
IUSE=""
DEPEND=">=dev-lang/ghc-6.6
>=dev-haskell/x11-1.3.0
>=dev-haskell/mtl-1.0
>=dev-haskell/filepath-1.0
dev-haskell/parsec
dev-haskell/stm"
src_unpack() {
unpack ${A}
# Cannot use -fasm on arches without a native code gen!
# Don't need -Wall.
# Portage does striping, package must not do it themselves.
sed -i -e 's/-O2 -fasm -Wall -optl-Wl,-s//' "${S}/xmobar.cabal"
}
src_install() {
cabal_src_install
dodoc xmobar.config-sample README
}
|