Created
June 20, 2013 07:37
-
-
Save Richard-W/5820901 to your computer and use it in GitHub Desktop.
An ebuild for installation of finalterm on Gentoo-Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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