blob: 7a8ad36d4b1356cf345b2890b4b3f84930541e69 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/sselp/sselp-9999.ebuild,v 1.1 2008/09/15 20:11:32 jer Exp $
inherit mercurial toolchain-funcs
DESCRIPTION="Simple X selection printer"
HOMEPAGE="http://www.suckless.org/programs/sselp.html"
SRC_URI=""
EHG_REPO_URI=http://code.suckless.org/hg/${PN}
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="x11-libs/libX11"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
src_unpack() {
mercurial_src_unpack
cd "${S}"
sed -i \
-e "s|^CFLAGS = -std=c99 -pedantic -Wall -Os|CFLAGS += -std=c99 -pedantic -Wall|" \
-e "s|^LDFLAGS = -s|LDFLAGS +=|" \
-e "s|^CC = cc|CC = $(tc-getCC)|" \
config.mk || die "sed failed"
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
dodoc README
}
|