portage-overlay

personal portage ebuild repository
git clone anongit@rnpnr.xyz:portage-overlay.git
Log | Files | Refs | Feed | README

Commit: bbbfc35b0e1719a47dba1db9ab685fc2225be19e
Parent: 8deac113b18649e408732eb83eb2a263d431ce88
Author: Randy Palamar
Date:   Sat, 27 Jan 2024 21:17:26 -0700

bump ncmpcpp to 20221231

Diffstat:
Mmedia-sound/ncmpcpp/Manifest | 2+-
Dmedia-sound/ncmpcpp/files/ncmpcpp-taglib-pc.patch | 56--------------------------------------------------------
Dmedia-sound/ncmpcpp/ncmpcpp-0.9.2-r3.ebuild | 71-----------------------------------------------------------------------
Amedia-sound/ncmpcpp/ncmpcpp-0.9.2_p20221231.ebuild | 70++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 71 insertions(+), 128 deletions(-)

diff --git a/media-sound/ncmpcpp/Manifest b/media-sound/ncmpcpp/Manifest @@ -1 +1 @@ -DIST ncmpcpp-0.9.2.tar.bz2 486266 BLAKE2B 160597493b93bac790b8619881e8a1fcf0efce4a538e35f54f31b06f3ed66691f02b37198cca46b475b7296aebbc864cb62a4398c60bd1e43907f9907a9bc118 SHA512 bbcb3b50233e363412af3c1cf1c0118122733dc376759cd35dee79950f42e098a0402ff670684df91847b990b26022630c9a71192e462bd46e70628e31489742 +DIST ncmpcpp-0.9.2_p20221231.gh.tar.gz 229678 BLAKE2B edb03554a14b90fbb5a4c99cb46ed73ffd702ff2fa417765d4e4bdaddd6bc40554f18aae10db81af87bbc8c91a4f966785fefdf43cfc97b18fc950c1aa59a370 SHA512 8affb5115c7531ee005544f002068b0b13b6aa41c5e11213ba8c979373a5328f298612903e531b6d384749469d6fa0ddb0d06ac4dac5ab2ca5485c7814db32a3 diff --git a/media-sound/ncmpcpp/files/ncmpcpp-taglib-pc.patch b/media-sound/ncmpcpp/files/ncmpcpp-taglib-pc.patch @@ -1,56 +0,0 @@ -From 8796a4469795dfb067d02e19ddb3ae380d9b2fc3 Mon Sep 17 00:00:00 2001 -From: James Le Cuirot <chewi@gentoo.org> -Date: Thu, 10 Nov 2022 23:58:33 +0000 -Subject: [PATCH] Check for taglib with pkg-config before trying taglib-config - -Programs like taglib-config are not good when cross-compiling. ---- - configure.ac | 27 +++++++++++++++++++-------- - 1 file changed, 19 insertions(+), 8 deletions(-) - -diff --git a/configure.ac b/configure.ac -index ef0c52b7..193840e6 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -257,19 +257,30 @@ PKG_CHECK_MODULES([libcurl], [libcurl], [ - - # taglib - if test "$taglib" != "no" ; then -- AC_PATH_PROG(TAGLIB_CONFIG, taglib-config) -- if test "$TAGLIB_CONFIG" != "" ; then -- CPPFLAGS="$CPPFLAGS `$TAGLIB_CONFIG --cflags`" -- LIBS="$LIBS `$TAGLIB_CONFIG --libs`" -+ PKG_CHECK_MODULES([taglib], [taglib], [ -+ AC_SUBST(taglib_CFLAGS) -+ AC_SUBST(taglib_LIBS) -+ ], [ -+ AC_PATH_PROG([TAGLIB_CONFIG], [taglib-config]) -+ if test "$TAGLIB_CONFIG" != ""; then -+ taglib_CFLAGS=`$TAGLIB_CONFIG --cflags` -+ taglib_LIBS=`$TAGLIB_CONFIG --libs` -+ else -+ if test "$taglib" = "yes" ; then -+ AC_MSG_ERROR([could not find taglib.pc or taglib-config executable]) -+ fi -+ fi -+ ]) -+ -+ if test "$TAGLIB_CONFIG$taglib_LIBS" != "" ; then -+ CPPFLAGS="$CPPFLAGS $taglib_CFLAGS" -+ LIBS="$LIBS $taglib_LIBS" -+ - AC_CHECK_HEADERS([taglib.h], , - if test "$taglib" = "yes" ; then - AC_MSG_ERROR([missing taglib.h header]) - fi - ) -- else -- if test "$taglib" = "yes" ; then -- AC_MSG_ERROR([taglib-config executable is missing]) -- fi - fi - fi - --- -2.38.1 - diff --git a/media-sound/ncmpcpp/ncmpcpp-0.9.2-r3.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.9.2-r3.ebuild @@ -1,71 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic - -DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc" -HOMEPAGE="https://ncmpcpp.rybczak.net/ https://github.com/ncmpcpp/ncmpcpp" -SRC_URI="https://rybczak.net/ncmpcpp/stable/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86" -IUSE="clock icu lto outputs taglib visualizer" - -RDEPEND=" - >=media-libs/libmpdclient-2.1 - dev-libs/boost:=[icu?,nls] - icu? ( dev-libs/icu:= ) - net-misc/curl - sys-libs/ncurses:=[unicode(+)] - sys-libs/readline:= - taglib? ( media-libs/taglib ) - visualizer? ( sci-libs/fftw:3.0= ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${PN}-taglib-pc.patch" -) - -src_prepare() { - default - eautoreconf - - sed -i -e '/^docdir/d' {,doc/}Makefile{.am,.in} || die - sed -i -e 's|COPYING||g' Makefile{.am,.in} || die -} - -src_configure() { - filter-flags '-flto*' - - econf \ - $(use_enable clock) \ - $(use_enable outputs) \ - $(use_enable visualizer) \ - $(use_with lto) \ - $(use_with taglib) \ - $(use_with visualizer fftw) -} - -src_install() { - default - - dodoc doc/{bindings,config} -} - -pkg_postinst() { - echo - elog "Example configuration files have been installed at" - elog "${EROOT}/usr/share/doc/${PF}" - elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/bindings" - elog "as user configuration files." - echo - if use visualizer; then - elog "If you want to use the visualizer, you need mpd with fifo enabled." - echo - fi -} diff --git a/media-sound/ncmpcpp/ncmpcpp-0.9.2_p20221231.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.9.2_p20221231.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +NCMPCPP_COMMIT="9f44edf0b1d74da7cefbd498341d59bc52f6043f" + +DESCRIPTION="Featureful ncurses based MPD client inspired by ncmpc" +HOMEPAGE="https://ncmpcpp.rybczak.net/ https://github.com/ncmpcpp/ncmpcpp" +SRC_URI="https://github.com/ncmpcpp/ncmpcpp/archive/${NCMPCPP_COMMIT}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86" +IUSE="clock icu outputs taglib visualizer" + +RDEPEND=" + dev-libs/boost:=[icu?,nls] + icu? ( dev-libs/icu:= ) + media-libs/libmpdclient + net-misc/curl + sys-libs/ncurses:=[unicode(+)] + sys-libs/readline:= + taglib? ( media-libs/taglib ) + visualizer? ( sci-libs/fftw:3.0= ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +S="${WORKDIR}/${PN}-${NCMPCPP_COMMIT}" + +src_prepare() { + default + eautoreconf + + sed -i -e '/^docdir/d' {,doc/}Makefile{.am,.in} || die + sed -i -e 's|COPYING||g' Makefile{.am,.in} || die +} + +src_configure() { + # --with-lto only appends -flto + econf \ + $(use_enable clock) \ + $(use_enable outputs) \ + $(use_enable visualizer) \ + --without-lto \ + $(use_with taglib) \ + $(use_with visualizer fftw) +} + +src_install() { + default + + dodoc doc/{bindings,config} +} + +pkg_postinst() { + echo + elog "Example configuration files have been installed at" + elog "${EROOT}/usr/share/doc/${PF}" + elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/bindings" + elog "as user configuration files." + echo + if use visualizer; then + elog "If you want to use the visualizer, you need mpd with fifo enabled." + echo + fi +}