diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2017-11-30 19:21:34 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2017-11-30 19:22:17 +0000 |
commit | f66fc4cd6d92175692a227ae6fbf251d386c2d4e (patch) | |
tree | 9f163c993ca626be8f3ade3fb18b5cfa8fcf786f /xfce-extra | |
parent | desktop.eclass: Split off desktop, menu, and icon functions from eutils. (diff) | |
download | gentoo-f66fc4cd6d92175692a227ae6fbf251d386c2d4e.tar.gz gentoo-f66fc4cd6d92175692a227ae6fbf251d386c2d4e.tar.bz2 gentoo-f66fc4cd6d92175692a227ae6fbf251d386c2d4e.zip |
xfce-extra/thunar-media-tags-plugin: remove obsolete xfconf.eclass, migrate to EAPI6
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/thunar-media-tags-plugin/Manifest | 2 | ||||
-rw-r--r-- | xfce-extra/thunar-media-tags-plugin/thunar-media-tags-plugin-0.2.1-r1.ebuild | 28 |
2 files changed, 29 insertions, 1 deletions
diff --git a/xfce-extra/thunar-media-tags-plugin/Manifest b/xfce-extra/thunar-media-tags-plugin/Manifest index 6ce706584dbc..b7375c9fc7f8 100644 --- a/xfce-extra/thunar-media-tags-plugin/Manifest +++ b/xfce-extra/thunar-media-tags-plugin/Manifest @@ -1 +1 @@ -DIST thunar-media-tags-plugin-0.2.1.tar.bz2 324833 SHA256 056d012a10403ee3e2e55b6ff2faecb796821de9ebee000315589b95d95ed253 SHA512 008ba9cf5405fba2582d072c48c915ad0afe2eb6bd193a710caf5f99247285362747265fa93fe28d9cedd75285a8f9593baf675310b5dbada948aefe359e951d WHIRLPOOL d44687e580adb4b9269e7e344469344a1dc8d14f2ff928f4913e9b9c2ea6d39697953391ac342979ec70e1e24cdb943a3170c3453eed15b4704d8d5509b97b10 +DIST thunar-media-tags-plugin-0.2.1.tar.bz2 324833 BLAKE2B 1f985fadaa58ebcf516c6f57f429d3a0c96161572a9829b7240e1f5550ad2cc5ebb121cb985f1680440ab4fc8be68be8f5ee3c5557d8f95aa0c23b3572514ec1 SHA512 008ba9cf5405fba2582d072c48c915ad0afe2eb6bd193a710caf5f99247285362747265fa93fe28d9cedd75285a8f9593baf675310b5dbada948aefe359e951d diff --git a/xfce-extra/thunar-media-tags-plugin/thunar-media-tags-plugin-0.2.1-r1.ebuild b/xfce-extra/thunar-media-tags-plugin/thunar-media-tags-plugin-0.2.1-r1.ebuild new file mode 100644 index 000000000000..4ee2a8495588 --- /dev/null +++ b/xfce-extra/thunar-media-tags-plugin/thunar-media-tags-plugin-0.2.1-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Adds special features for media files to the Thunar File Manager" +HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-media-tags-plugin" +SRC_URI="mirror://xfce/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=media-libs/taglib-1.6 + >=x11-libs/gtk+-2.12:2 + >=xfce-base/exo-0.6 + >=xfce-base/thunar-1.2" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog NEWS README TODO ) + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |