diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-07-31 06:12:20 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-07-31 06:12:20 +0000 |
commit | 02382f989a3e65e7c0fac965f673dc57ab532feb (patch) | |
tree | f74389f9f560f93f7362b6f38b725cbef8256431 /x11-terms/roxterm/roxterm-2.6.5.ebuild | |
parent | old (diff) | |
download | historical-02382f989a3e65e7c0fac965f673dc57ab532feb.tar.gz historical-02382f989a3e65e7c0fac965f673dc57ab532feb.tar.bz2 historical-02382f989a3e65e7c0fac965f673dc57ab532feb.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha116/cvs/Linux x86_64
Diffstat (limited to 'x11-terms/roxterm/roxterm-2.6.5.ebuild')
-rw-r--r-- | x11-terms/roxterm/roxterm-2.6.5.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/x11-terms/roxterm/roxterm-2.6.5.ebuild b/x11-terms/roxterm/roxterm-2.6.5.ebuild new file mode 100644 index 000000000000..684e97f94f5a --- /dev/null +++ b/x11-terms/roxterm/roxterm-2.6.5.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/roxterm/roxterm-2.6.5.ebuild,v 1.1 2012/07/31 06:12:20 ssuominen Exp $ + +EAPI=4 +inherit gnome2-utils python toolchain-funcs + +DESCRIPTION="A terminal emulator designed to integrate with the ROX environment" +HOMEPAGE="http://roxterm.sourceforge.net/" +SRC_URI="mirror://sourceforge/roxterm/${P}.tar.bz2" + +LICENSE="GPL-2 LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="nls" + +RDEPEND=">=dev-libs/dbus-glib-0.100 + >=dev-libs/glib-2.28 + x11-libs/gtk+:3 + x11-libs/libICE + x11-libs/libSM + x11-libs/vte:2.90" +DEPEND="${RDEPEND} + dev-lang/python:2.7 + dev-libs/libxslt + dev-python/lockfile + virtual/pkgconfig + || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) + nls? ( app-text/po4a sys-devel/gettext )" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + python_convert_shebangs 2 mscript.py +} + +src_configure() { + local myconf=( CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" --prefix=/usr --docdir=/usr/share/doc/${PF} --destdir="${D}" ) + use nls || myconf+=( --disable-gettext --disable-po4a --disable-translations ) + ./mscript.py configure "${myconf[@]}" +} + +src_compile() { ./mscript.py build; } +src_install() { ./mscript.py install; } +pkg_preinst() { gnome2_icon_savelist; } +pkg_postinst() { gnome2_icon_cache_update; } +pkg_postrm() { gnome2_icon_cache_update; } |