diff options
author | eroen <eroen-overlay@occam.eroen.eu> | 2018-03-02 11:20:22 +0100 |
---|---|---|
committer | eroen <eroen-overlay@occam.eroen.eu> | 2018-03-02 11:59:07 +0100 |
commit | fe035aa85f2a3ffea0cd49ae3d7c252e3e6f31eb (patch) | |
tree | 02e36cd2cb9c01e16b7bfcc6e3558b83fa1c34e5 | |
parent | termite - silence dumb qa warnings (diff) | |
download | eroen-fe035aa85f2a3ffea0cd49ae3d7c252e3e6f31eb.tar.gz eroen-fe035aa85f2a3ffea0cd49ae3d7c252e3e6f31eb.tar.bz2 eroen-fe035aa85f2a3ffea0cd49ae3d7c252e3e6f31eb.zip |
termite-13 - bump
-rw-r--r-- | x11-terms/termite/termite-13.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/x11-terms/termite/termite-13.ebuild b/x11-terms/termite/termite-13.ebuild new file mode 100644 index 0000000..7c28dce --- /dev/null +++ b/x11-terms/termite/termite-13.ebuild @@ -0,0 +1,63 @@ +# By eroen, 2013-2016 +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. + +EAPI=6 + +inherit eutils toolchain-funcs versionator +if [[ 9999 == $PV ]]; then + inherit git-r3 +else + # Submodules :-( + #SRC_URI="https://github.com/thestinger/termite/archive/v$PV.tar.gz -> $P.tar.gz" + inherit git-r3 + EGIT_COMMIT=v$PV + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="A keyboard-centric VTE-based terminal" +HOMEPAGE="https://github.com/thestinger/termite" +EGIT_REPO_URI="https://github.com/thestinger/termite.git" + +LICENSE="LGPL-2+ MIT" +SLOT="0" +IUSE="" + +RDEPEND="dev-libs/libpcre2 + >=x11-libs/gtk+-3.0 + >=x11-libs/vte-0.43.2:2.91[termite-patch(-)]" +DEPEND="${RDEPEND}" + +pkg_pretend() { + if ! version_is_at_least 4.7 $(gcc-version); then + eerror "${PN} passes -std=c++11 to \${CXX} and requires a version" + eerror "of gcc newer than 4.7.0" + fi +} + +pkg_setup() { + # Makefile prepends -O3 + CXXFLAGS="-O0 ${CXXFLAGS}" +} + +src_prepare() { + default + sed -e "s/^VERSION = .*$/VERSION = v${PV}/" \ + -i Makefile || die +} + +src_compile() { + emake LDFLAGS="${LDFLAGS}" +} + +src_install() { + emake DESTDIR="${D}" PREFIX=/usr install + dodoc README* config +} + +pkg_postinst() { + elog + elog "Termite looks for a config file ~/.config/termite/config" + elog "An example config can be found in ${EROOT}usr/share/doc/${PF}/" +} |