You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-terms/st/st-9999.ebuild

51 lines
1.2 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/st/st-9999.ebuild,v 1.2 2011/11/04 13:32:06 xmw Exp $
EAPI=3
inherit mercurial 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"
EHG_REPO_URI="http://hg.suckless.org/st"
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
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
if use savedconfig ; then
restore_config config.h
fi
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install || die
tic -s -o "${ED}"/usr/share/terminfo st.info || die
dodoc README TODO || die
if use savedconfig ; then
save_config config.h
fi
}