diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-08-14 13:43:15 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-08-14 13:43:15 +0200 |
commit | bc8361ad276a7c6a7e2e1205b557de120fb2b248 (patch) | |
tree | d97df6e0499913bc4435cbd0aa8a6de960c6bbf3 /x11-terms/st | |
parent | dev-libs/ace: version bump, enable proper building of static libraries (diff) | |
download | gentoo-bc8361ad276a7c6a7e2e1205b557de120fb2b248.tar.gz gentoo-bc8361ad276a7c6a7e2e1205b557de120fb2b248.tar.bz2 gentoo-bc8361ad276a7c6a7e2e1205b557de120fb2b248.zip |
Set RDEPEND on <=sys-libs/ncurses-6.0 and do not install terminfo (bug #557454).
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'x11-terms/st')
-rw-r--r-- | x11-terms/st/st-0.6-r1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/x11-terms/st/st-0.6-r1.ebuild b/x11-terms/st/st-0.6-r1.ebuild new file mode 100644 index 000000000000..e0e54e1689a9 --- /dev/null +++ b/x11-terms/st/st-0.6-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils multilib savedconfig toolchain-funcs + +DESCRIPTION="simple terminal implementation for X" +HOMEPAGE="http://st.suckless.org/" +SRC_URI="http://dl.suckless.org/st/${P}.tar.gz" + +LICENSE="MIT-with-advertising" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" +IUSE="savedconfig" + +RDEPEND=" + !<sys-libs/ncurses-6.0 + media-libs/fontconfig + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXft +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig + x11-proto/xextproto + x11-proto/xproto +" + +src_prepare() { + epatch_user + + sed -e '/^CFLAGS/s:[[:space:]]-O[^[:space:]]*[[:space:]]: :' \ + -e '/^X11INC/{s:/usr/X11R6/include:/usr/include/X11:}' \ + -e "/^X11LIB/{s:/usr/X11R6/lib:/usr/$(get_libdir)/X11:}" \ + -i config.mk || die + sed -e '/@echo/!s:@::' \ + -i Makefile || die + tc-export CC + + restore_config config.h +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install + + dodoc TODO + + make_desktop_entry ${PN} simpleterm utilities-terminal 'System;TerminalEmulator;' '' + + save_config config.h +} |