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-0.2.1.ebuild

46 lines
1.1 KiB

# 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.2.1.ebuild,v 1.2 2012/03/07 18:17:30 jer Exp $
EAPI=4
inherit savedconfig toolchain-funcs
DESCRIPTION="simple terminal implementation for X"
HOMEPAGE="http://st.suckless.org/"
SRC_URI="http://hg.suckless.org/st/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}
sys-libs/ncurses"
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 TODO
save_config config.h
}
pkg_postinst() {
elog "Please ensure a usable font is installed, like"
elog " media-fonts/corefonts"
elog " media-fonts/dejavu"
elog " media-fonts/urw-fonts"
}