diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-12-28 16:16:45 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-12-28 16:16:45 +0100 |
commit | 09ec50411e7e792f198e306173e92c8bd9335676 (patch) | |
tree | 663933cddee68f6890695a9472b39c09d1e9a72a | |
parent | app-cdr/xfburn: Update homepage (diff) | |
download | gentoo-09ec50411e7e792f198e306173e92c8bd9335676.tar.gz gentoo-09ec50411e7e792f198e306173e92c8bd9335676.tar.bz2 gentoo-09ec50411e7e792f198e306173e92c8bd9335676.zip |
app-cdr/xfburn: Bump to 0.7.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | app-cdr/xfburn/Manifest | 1 | ||||
-rw-r--r-- | app-cdr/xfburn/xfburn-0.7.0.ebuild | 59 |
2 files changed, 60 insertions, 0 deletions
diff --git a/app-cdr/xfburn/Manifest b/app-cdr/xfburn/Manifest index 55ac41f25642..b7e2b5339f11 100644 --- a/app-cdr/xfburn/Manifest +++ b/app-cdr/xfburn/Manifest @@ -1 +1,2 @@ DIST xfburn-0.6.2.tar.bz2 869745 BLAKE2B ed8658d729dc0cf1ee40773fa82baf9a5301225bce4c971201ae8d21bffb74e81fb9d1b674f8b9e0bc55585a3fc9f380a0aa3718173ce7425d40f3dfcd4e1fb6 SHA512 c74d21244b5029aaa72c4911ea7549458aea161623a6a020a165b8148f320053a83189de87f71192f006579ca435558d0c07e1a8aa4165db8cfb30581f8882b4 +DIST xfburn-0.7.0.tar.bz2 923498 BLAKE2B 27c80f20306b1097f4d9176c2b9278b6ec5628eda6c36779270eca4fb2387ca425450201d6a4ae171aa8ce2fa50243614ae30d4561c72e3b70727cfcf54c7c34 SHA512 5ac679926809839d36c94d918ebc9bb409b9940127eba1cae6daf6614288f5d18181be5b7b4d249f0f0e973c2a4a22b8b3ce5709a2d23e5d4dd3b412cf5846d1 diff --git a/app-cdr/xfburn/xfburn-0.7.0.ebuild b/app-cdr/xfburn/xfburn-0.7.0.ebuild new file mode 100644 index 000000000000..b9f5ce9ee725 --- /dev/null +++ b/app-cdr/xfburn/xfburn-0.7.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg-utils + +DESCRIPTION="GTK+ based CD and DVD burning application" +HOMEPAGE=" + https://docs.xfce.org/apps/xfburn/start + https://gitlab.xfce.org/apps/xfburn/ +" +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="gstreamer +udev" + +DEPEND=" + >=dev-libs/glib-2.38:= + >=dev-libs/libburn-0.4.2:= + >=dev-libs/libisofs-0.6.2:= + >=x11-libs/gtk+-3.20:3= + >=xfce-base/exo-0.11.0:= + >=xfce-base/libxfce4ui-4.12.0:= + gstreamer? ( + media-libs/gstreamer:1.0= + media-libs/gst-plugins-base:1.0= + ) + udev? ( dev-libs/libgudev:= ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +src_configure() { + local myconf=( + $(use_enable udev gudev) + $(use_enable gstreamer) + ) + + econf "${myconf[@]}" +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update +} |