mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-01-05 13:24:17 +01:00
64 lines
1.5 KiB
Bash
64 lines
1.5 KiB
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit eutils autotools gnome.org xdg-utils
|
|
|
|
DESCRIPTION="GTK+ utility for editing MP2, MP3, MP4, FLAC, Ogg and other media tags"
|
|
HOMEPAGE="https://projects.gnome.org/easytag/"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="flac mp3 mp4 nls speex vorbis wavpack"
|
|
|
|
RDEPEND=">=x11-libs/gtk+-2.24:2
|
|
mp3? (
|
|
>=media-libs/id3lib-3.8.3-r7
|
|
media-libs/libid3tag
|
|
)
|
|
flac? (
|
|
media-libs/flac
|
|
media-libs/libvorbis
|
|
)
|
|
mp4? ( media-libs/taglib[mp4(+)] )
|
|
vorbis? ( media-libs/libvorbis )
|
|
wavpack? ( media-sound/wavpack )
|
|
speex? (
|
|
media-libs/speex
|
|
media-libs/libvorbis
|
|
)"
|
|
DEPEND="${RDEPEND}
|
|
dev-util/intltool
|
|
virtual/pkgconfig
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
src_prepare() {
|
|
default
|
|
epatch "${FILESDIR}"/${P}-desktop.patch
|
|
epatch "${FILESDIR}"/${P}-werror.patch
|
|
epatch "${FILESDIR}"/${P}-taglib.patch
|
|
epatch "${FILESDIR}"/${P}-docs.patch
|
|
epatch "${FILESDIR}"/${P}-iso-c90.patch
|
|
eautoreconf
|
|
}
|
|
|
|
DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS TODO )
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable nls) \
|
|
$(use_enable mp3) \
|
|
$(use_enable mp3 id3v23) \
|
|
$(use_enable vorbis ogg) \
|
|
$(use_enable speex) \
|
|
$(use_enable flac) \
|
|
$(use_enable mp4) \
|
|
$(use_enable wavpack)
|
|
# workaround for gcc10
|
|
sed -i -e 's/\(^CFLAGS = .*\)/\1 -fcommon/' Makefile || die
|
|
}
|
|
|
|
pkg_postinst() { xdg_desktop_database_update; }
|
|
pkg_postrm() { xdg_desktop_database_update; }
|