blob: 0490488cac5734eba695f555332aa952b21decef (
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
45
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/st/st-0.1.1.ebuild,v 1.3 2012/01/04 05:35:09 vapier Exp $
EAPI=3
inherit savedconfig toolchain-funcs
DESCRIPTION="simple terminal implementation for X"
HOMEPAGE="http://st.suckless.org/"
SRC_URI="http://hg.suckless.org/st/archive/0.1.1.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}
sys-libs/ncurses"
pkg_setup() {
elog "Please ensure an usable font is installed, like"
elog " media-fonts/corefonts"
elog " media-fonts/dejavu"
elog " media-fonts/urw-fonts"
}
src_prepare() {
sed -e '/^CFLAGS/s:[[:space:]]-Wall[[:space:]]: :' \
-e '/^CFLAGS/s:[[:space:]]-O[^[:space:]]*[[:space:]]: :' \
-e '/^LDFLAGS/{s:[[:space:]]-s[[:space:]]: :}' \
-i config.mk || die
tc-export CC
restore_config config.h
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install || die
tic -s -o "${ED}"/usr/share/terminfo st.info || die
dodoc README TODO || die
save_config config.h
}
|