blob: 928084a43ec5a06eb837adf16b01544dec1e0653 (
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
44
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit mercurial toolchain-funcs
DESCRIPTION="list window names"
HOMEPAGE="http://tools.suckless.org/view/x+tools"
SRC_URI=""
EHG_REPO_URI=http://suckless.org/cgi-bin/hgwebdir.cgi/${PN}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="x11-libs/libX11"
RDEPEND=${DEPEND}
S=${WORKDIR}/${PN}
src_unpack() {
mercurial_src_unpack
cd "${S}"
sed -i \
-e "s/.*strip.*//" \
Makefile || die "sed failed"
sed -i \
-e "s/CFLAGS = -Os/CFLAGS +=/" \
-e "s/LDFLAGS =/LDFLAGS +=/" \
config.mk || die "sed failed"
}
src_compile() {
emake CC=$(tc-getCC) || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
dodoc README
}
|