diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2017-11-30 17:55:30 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2017-11-30 17:55:52 +0000 |
commit | a3e11ba9a569c5fcc4b5fca175503d5147d2462d (patch) | |
tree | b1a7600c1515081691bd08365cd0329467d473ef /xfce-extra/eatmonkey/eatmonkey-0.1.4-r1.ebuild | |
parent | dev-python/ujson: depend on unittest2 (diff) | |
download | gentoo-a3e11ba9a569c5fcc4b5fca175503d5147d2462d.tar.gz gentoo-a3e11ba9a569c5fcc4b5fca175503d5147d2462d.tar.bz2 gentoo-a3e11ba9a569c5fcc4b5fca175503d5147d2462d.zip |
xfce-extra/eatmonkey: remove obsolete xfconf.eclass, migrate to EAPI6
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'xfce-extra/eatmonkey/eatmonkey-0.1.4-r1.ebuild')
-rw-r--r-- | xfce-extra/eatmonkey/eatmonkey-0.1.4-r1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/xfce-extra/eatmonkey/eatmonkey-0.1.4-r1.ebuild b/xfce-extra/eatmonkey/eatmonkey-0.1.4-r1.ebuild new file mode 100644 index 000000000000..c7f2c0b86a33 --- /dev/null +++ b/xfce-extra/eatmonkey/eatmonkey-0.1.4-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils + +DESCRIPTION="A download manager that works exclusively with aria2" +HOMEPAGE="https://goodies.xfce.org/projects/applications/eatmonkey" +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND=">=x11-libs/gtk+-2.12:2 + dev-libs/libunique:1 + >=xfce-base/libxfce4util-4.8 + >=net-libs/libsoup-2.26:2.4" +RDEPEND="${COMMON_DEPEND} + >=net-misc/aria2-1.9.0[bittorrent,xmlrpc] + dev-lang/ruby + dev-ruby/ruby-glib2 + dev-ruby/ruby-gtk2" +DEPEND="${COMMON_DEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog NEWS README ) + +src_prepare() { + eapply -p0 "${FILESDIR}"/${P}-syntax.patch + sed -i -e 's:/usr/local:/usr:' src/eat{monkey,manager.rb} || die + default +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |