Skip to content

Instantly share code, notes, and snippets.

@Richard-W
Created June 20, 2013 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Richard-W/5820901 to your computer and use it in GitHub Desktop.
Save Richard-W/5820901 to your computer and use it in GitHub Desktop.
An ebuild for installation of finalterm on Gentoo-Linux
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit cmake-utils gnome2-utils
DESCRIPTION="At last – a modern terminal emulator."
HOMEPAGE="https://github.com/p-e-w/finalterm"
SRC_URI=""
EGIT_REPO_URI="https://github.com/p-e-w/finalterm.git"
inherit git-2
LICENSE=""
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
dev-util/cmake
dev-lang/vala
dev-util/intltool
dev-libs/libgee
media-libs/clutter-gtk
x11-libs/mx
dev-libs/keybinder
x11-libs/libnotify
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DGSETTINGS_LOCALINSTALL=OFF
)
cmake-utils_src_configure
}
pkg_preinst() {
gnome2_schemas_savelist
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_schemas_update
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_schemas_update
gnome2_icon_cache_update
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment