blob: c9aba6a6812b77891c3242530e3694fa3a86e503 (
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
39
40
41
42
43
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/dzen/dzen-0.5.0.ebuild,v 1.1 2007/06/30 18:27:38 coldwind Exp $
inherit toolchain-funcs
SLOT="2"
MY_P="${PN}${SLOT}-${PV}"
DESCRIPTION="a general purpose messaging, notification and menuing program for
X11."
HOMEPAGE="http://gotmor.googlepages.com/dzen"
SRC_URI="http://gotmor.googlepages.com/${MY_P}.tar.gz"
LICENSE="MIT"
KEYWORDS="~x86"
IUSE="xinerama"
RDEPEND="x11-libs/libX11
xinerama? ( x11-libs/libXinerama )"
DEPEND="${RDEPEND}
xinerama? ( x11-proto/xineramaproto )"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
sed -e "s:/usr/local:/usr:g" \
-e "s/-Os/${CFLAGS}/g" \
-e "/CC/s:cc:$(tc-getCC):" \
-i config.mk || die "sed failed"
if use xinerama ; then
sed -e "/^LIBS/s/$/\ -lXinerama/" \
-e "/^CFLAGS/s/$/\ -DDZEN_XINERAMA/" \
-i config.mk || die "sed failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README || die
}
|