diff options
Diffstat (limited to 'x11-themes')
13 files changed, 224 insertions, 83 deletions
diff --git a/x11-themes/e-flat-theme/Manifest b/x11-themes/e-flat-theme/Manifest index 460ace4f3172..1d1e6c190c57 100644 --- a/x11-themes/e-flat-theme/Manifest +++ b/x11-themes/e-flat-theme/Manifest @@ -1 +1 @@ -DIST e-flat-theme-0_pre20201018.edj 45600078 BLAKE2B 28f1949aa1bb316726d81fbc3fc056b29d101528be55bf26ea7e4dd8e1f96410b6d5d2c6c7d4e7742d124709a9c968cf86507dd0392aa4a1ed8142a6c0dd0c69 SHA512 def07d7d92c8dd05d0cefe6205c3af2b67ab81ba9472b070dc5acd3cce60e9f6aa1e374086efcad787aedfc4d755818f7d170e1139c104804e0154921d03ca8b +DIST e-flat-theme-0_pre20210121.edj 45282525 BLAKE2B baf27345585d45ca57c2826271dcd377628ef6e733ee98a06020fb4c303034bbe7866cb8704cc33361019cfb00f186839972835e9119390caf833a7a51a0cb7a SHA512 dbced249ff0fc4fd775e8c6bba524a1636f02854f7ccd42d1c038f426edea2e12c1ec677e7e1666c7a1ff74d11cbcd96c8959997dae8f8f36eb77dbcdef84822 diff --git a/x11-themes/e-flat-theme/e-flat-theme-0_pre20201018.ebuild b/x11-themes/e-flat-theme/e-flat-theme-0_pre20210121.ebuild index 1ce5c3e1babc..d9b011896102 100644 --- a/x11-themes/e-flat-theme/e-flat-theme-0_pre20201018.ebuild +++ b/x11-themes/e-flat-theme/e-flat-theme-0_pre20210121.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 diff --git a/x11-themes/gtk-engines-unico/gtk-engines-unico-1.0.3_pre20140109-r1.ebuild b/x11-themes/gtk-engines-unico/gtk-engines-unico-1.0.3_pre20140109-r1.ebuild new file mode 100644 index 000000000000..f2451ccc2fa1 --- /dev/null +++ b/x11-themes/gtk-engines-unico/gtk-engines-unico-1.0.3_pre20140109-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN=${PN/gtk-engines-} +MY_PV=${PV/_pre/+14.04.} +MY_P=${MY_PN}_${MY_PV} +inherit autotools multilib-minimal + +DESCRIPTION="The Unico GTK+ 3.x theming engine" +HOMEPAGE="https://launchpad.net/unico" +SRC_URI="https://launchpad.net/ubuntu/+archive/primary/+files/${MY_P}.orig.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-libs/glib-2.26:2[${MULTILIB_USEDEP}] + >=x11-libs/cairo-1.10[glib,${MULTILIB_USEDEP}] + >=x11-libs/gtk+-3.5.2:3[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +S="${WORKDIR}/${MY_PN}-${MY_PV}" + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + # $(use_enable debug) controls CPPFLAGS -D_DEBUG and -DNDEBUG but they are currently + # unused in the code itself. + local myeconfargs=( + --disable-static + --disable-debug + --disable-maintainer-flags + ) + ECONF_SOURCE=${S} econf "${myeconfargs[@]}" +} + +multilib_src_install_all() { + einstalldocs + find "${ED}" -type f -name '*.la' -delete || die +} diff --git a/x11-themes/gtk-engines/files/gtk-engines-2.20.2-automake-1.14.patch b/x11-themes/gtk-engines/files/gtk-engines-2.20.2-automake-1.14.patch new file mode 100644 index 000000000000..f23f929bbfbe --- /dev/null +++ b/x11-themes/gtk-engines/files/gtk-engines-2.20.2-automake-1.14.patch @@ -0,0 +1,49 @@ +Description: Work around FTBFS due to automake 1.14 bug + Automake generates invalid Makefiles when patsubst is used in + Makefile.am. To work around this problem configure injects the + patsubsts to the Makefile now. + . +Author: Balint Reczey <balint@balintreczey.hu> +Bug-Debian: http://bugs.debian.org/713353 +--- gtk2-engines-2.20.2.orig/configure.ac ++++ gtk2-engines-2.20.2/configure.ac +@@ -142,6 +142,8 @@ fi + AC_SUBST(BUILD_ENGINES) + AC_SUBST(BUILD_THEMES) + AC_SUBST(BUILD_SCHEMAS) ++AC_SUBST([auto_find_tests], ['$(patsubst %,exported_%,$(BUILD_ENGINES)) torture_buildin $(patsubst %,torture_%,$(TORTURE_TEST_ENGINES))']) ++ + + if test $animation = "yes"; then + AC_DEFINE_UNQUOTED(HAVE_ANIMATION, 1, [Defines whether to compile with animation support]) +--- gtk2-engines-2.20.2.orig/test/Makefile.am ++++ gtk2-engines-2.20.2/test/Makefile.am +@@ -64,9 +64,10 @@ VALGRIND_ENV=G_SLICE=always-malloc G_DEB + # Exported Symbols Test - Tests all engines unconditionally + ############################################################# + # Prefix with exported_ +-EXPORTED_SYMBOLS_TESTS = $(patsubst %,exported_%,$(BUILD_ENGINES)) ++# disabled to work around automake bug #14561 ++# EXPORTED_SYMBOLS_TESTS = $(patsubst %,exported_%,$(BUILD_ENGINES)) + +-TESTS += $(EXPORTED_SYMBOLS_TESTS) ++#TESTS += $(EXPORTED_SYMBOLS_TESTS) + + + ############################################################# +@@ -85,10 +86,13 @@ SUPPORTED_TORTURE_TEST_ENGINES = \ + # Filter engines that are not build from the set of engines + TORTURE_TEST_ENGINES = $(filter $(SUPPORTED_TORTURE_TEST_ENGINES),$(BUILD_ENGINES)) + # Prefix with torture_ +-TORTURE_TEST_TESTS = torture_buildin $(patsubst %,torture_%,$(TORTURE_TEST_ENGINES)) ++# disabled to work around automake bug #14561 ++# TORTURE_TEST_TESTS = torture_buildin $(patsubst %,torture_%,$(TORTURE_TEST_ENGINES)) + + # Add TORTURE_TEST_ENGINES to list of tests +-TESTS += $(TORTURE_TEST_TESTS) ++# disabled to work around automake bug #14561 ++#TESTS += $(TORTURE_TEST_TESTS) ++TESTS += @auto_find_tests@ + + # Possible other tests: + # - An extensive theme switch tests that loads/unloads the engine diff --git a/x11-themes/gtk-engines/files/gtk-engines-2.20.2-slibtool.patch b/x11-themes/gtk-engines/files/gtk-engines-2.20.2-slibtool.patch new file mode 100644 index 000000000000..69c409c9e7e3 --- /dev/null +++ b/x11-themes/gtk-engines/files/gtk-engines-2.20.2-slibtool.patch @@ -0,0 +1,47 @@ +This fixes build with sys-devel/slibtool + +--- gtk-engines-2.20.2/configure.ac ++++ gtk-engines-2.20.2/configure.ac +@@ -27,6 +27,9 @@ + AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package]) + AM_GLIB_GNU_GETTEXT + ++AC_CHECK_LIBM ++AC_SUBST([LIBM]) ++ + AC_ARG_ENABLE(all, [ --disable-all skip all engines/themes by default], [defaultval=$enableval], [defaultval="yes"]) + AC_ARG_ENABLE(clearlooks, [ --disable-clearlooks skip ClearLooks engine/theme], [clearlooks=$enableval], [clearlooks="$defaultval"]) + AC_ARG_ENABLE(crux, [ --disable-crux skip Crux engine/theme], [crux=$enableval], [crux="$defaultval"]) +--- gtk-engines-2.20.2/engines/hc/Makefile.am ++++ gtk-engines-2.20.2/engines/hc/Makefile.am +@@ -38,7 +38,7 @@ + ./src/hc-style.c + + libhcengine_la_LDFLAGS = -module -avoid-version -no-undefined -export-symbols $(top_srcdir)/engines/engine.symbols +-libhcengine_la_LIBADD = $(top_builddir)/engines/support/libsupport.la $(GTK_LIBS) ++libhcengine_la_LIBADD = $(top_builddir)/engines/support/libsupport.la $(GTK_LIBS) $(LIBM) + + -include $(top_srcdir)/git.mk + +--- gtk-engines-2.20.2/engines/mist/Makefile.am ++++ gtk-engines-2.20.2/engines/mist/Makefile.am +@@ -16,7 +16,7 @@ + ./src/mist.c + + libmist_la_LDFLAGS = -module -avoid-version -no-undefined -export-symbols $(top_srcdir)/engines/engine.symbols +-libmist_la_LIBADD = $(top_builddir)/engines/support/libsupport.la $(GTK_LIBS) ++libmist_la_LIBADD = $(top_builddir)/engines/support/libsupport.la $(GTK_LIBS) $(LIBM) + + -include $(top_srcdir)/git.mk + +--- gtk-engines-2.20.2/engines/thinice/Makefile.am ++++ gtk-engines-2.20.2/engines/thinice/Makefile.am +@@ -18,7 +18,7 @@ + ./src/thinice_main.c + + libthinice_la_LDFLAGS = -module -avoid-version -no-undefined -export-symbols $(top_srcdir)/engines/engine.symbols +-libthinice_la_LIBADD = $(top_builddir)/engines/support/libsupport.la $(GTK_LIBS) ++libthinice_la_LIBADD = $(top_builddir)/engines/support/libsupport.la $(GTK_LIBS) $(LIBM) + + -include $(top_srcdir)/git.mk + diff --git a/x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild b/x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild index f181b2cbd6f5..d21e4c00307e 100644 --- a/x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild +++ b/x11-themes/gtk-engines/gtk-engines-2.20.2-r100.ebuild @@ -3,6 +3,7 @@ EAPI=7 +GNOME2_EAUTORECONF="yes" GNOME2_LA_PUNT="yes" GNOME_TARBALL_SUFFIX="bz2" LUA_COMPAT=( lua5-{1..4} luajit ) @@ -14,7 +15,7 @@ HOMEPAGE="https://www.gtk.org/" LICENSE="LGPL-2.1" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" IUSE="accessibility lua" REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )" @@ -38,15 +39,16 @@ PATCHES=( "${FILESDIR}"/${P}-change-bullet.patch "${FILESDIR}"/${P}-tooltips.patch "${FILESDIR}"/${P}-window-dragging.patch + "${FILESDIR}"/${P}-slibtool.patch #766680 + "${FILESDIR}"/${P}-automake-1.14.patch # taken from Debian ) src_prepare() { - gnome2_src_prepare # pkgconfig wrapper set up by lua-single.eclass is not multilib-compatible # at present so point Autoconf directly to the correct implementation. - # We patch configure rather than configure.ac because running 'eautoreconf' - # results for some reason in corrupted test Makefiles. - sed -i -e "s|\"lua\"|\"${ELUA}\"|g" configure || die + sed -i -e "/PKG_CHECK_MODULES(LUA,/s|lua|${ELUA}|" configure.ac || die + + gnome2_src_prepare } multilib_src_configure() { diff --git a/x11-themes/gtk-engines/gtk-engines-2.20.2-r2.ebuild b/x11-themes/gtk-engines/gtk-engines-2.20.2-r2.ebuild deleted file mode 100644 index 2a380d0be67b..000000000000 --- a/x11-themes/gtk-engines/gtk-engines-2.20.2-r2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" -GNOME_TARBALL_SUFFIX="bz2" - -inherit eutils gnome2 multilib-minimal - -DESCRIPTION="GTK+2 standard engines and themes" -HOMEPAGE="https://www.gtk.org/" - -LICENSE="LGPL-2.1" -SLOT="2" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" -IUSE="accessibility lua" - -RDEPEND=" - >=x11-libs/gtk+-2.24.23:2[${MULTILIB_USEDEP}] - lua? ( dev-lang/lua:0[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND} - >=dev-util/intltool-0.31 - virtual/pkgconfig -" - -src_prepare() { - # Patch from 2.21.x, fixes building with glib-2.32, bug #410455 - epatch "${FILESDIR}/${P}-glib.h.patch" - - # Fix java apps look, bug #523074 - epatch "${FILESDIR}/${P}-java-look.patch" - - # Apply Fedora fixes/improvements - epatch "${FILESDIR}"/${P}-auto-mnemonics.patch - epatch "${FILESDIR}"/${P}-change-bullet.patch - epatch "${FILESDIR}"/${P}-tooltips.patch - epatch "${FILESDIR}"/${P}-window-dragging.patch - - gnome2_src_prepare -} - -multilib_src_configure() { - ECONF_SOURCE=${S} \ - gnome2_src_configure \ - --enable-animation \ - $(use_enable lua) \ - $(use_with lua system-lua) \ - $(use_enable accessibility hc) -} - -multilib_src_install() { - gnome2_src_install -} - -multilib_src_install_all() { - einstalldocs -} diff --git a/x11-themes/light-themes/Manifest b/x11-themes/light-themes/Manifest index a1e2fb25e78c..bc7111ad1b5c 100644 --- a/x11-themes/light-themes/Manifest +++ b/x11-themes/light-themes/Manifest @@ -1,3 +1,4 @@ DIST Gentoo-Buttons-r1.tar.xz 80476 BLAKE2B 802ce2cc0d8dd3c639cbb1b8ca51732cfb87194ecc2bd0ca68c7945c8768b8662d206bf191f443f983e80e25a21ebf7d1909771b2f51b7825b763494a4edac81 SHA512 d1c093fe8ce905a409cd3ce85fde8490f26b918bb1dd3ccb6695eaa6c7a4908d7ba1e1d14a9443a16331168ca9b3fa58b5b28805fc583b4345932602f7c19168 DIST ubuntu-themes_16.10+17.04.20170406.orig.tar.gz 13836108 BLAKE2B aeb2b33639c32c378b111c717099a79afb8688b48780bfa816a6ac9b4c0bfef5d1b475048f8c4906ee76787b503dcc207fbd617f1718883952917739012e2a11 SHA512 50d65dbe232237e1757b0d7a85ba7c2cafac18861211ca1b33a57de6a4961c325014851d1ee661adec57fac7472b7ae4f78439f30fa6f425eb751e94940d9f91 DIST ubuntu-themes_19.04.orig.tar.gz 16081764 BLAKE2B f94545c5900c9eaab61f021d8a8f37ef6ee825045df88e5a5e51c5d7632109343ca0293ee9b590daa6edf3be109a05128803a8a2c787a333f6317f8dbe54529c SHA512 95b41c5d3a47fba9c4b5368b4e80d8924e09844783c66ca697ce0ff5d71f2b0fd4f56a9041dc142267e0eaf75fd5a8b47c0abae049fc3434b5e29f3f363d83e8 +DIST ubuntu-themes_20.10.orig.tar.gz 15679746 BLAKE2B bcb1bae746379fe26700b7e88db4e91b0220e7145f55c59b951a31d768c2311d843c5d92c989b049e1009afbfc6e918e65726408298858e8fd689d0bbab1ca42 SHA512 0118f7c2404856216ff2df0246ea2fa98d0d5b25973abc3df13a998f7a41f2eeb32ca08281ba41399a91fa16ab046e3b3292f504503958983a6488c1e3001ac4 diff --git a/x11-themes/light-themes/light-themes-17.04_p20170406-r1.ebuild b/x11-themes/light-themes/light-themes-17.04_p20170406-r2.ebuild index 4a33d8bcdb60..3db72c12aeaf 100644 --- a/x11-themes/light-themes/light-themes-17.04_p20170406-r1.ebuild +++ b/x11-themes/light-themes/light-themes-17.04_p20170406-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -59,6 +59,6 @@ src_install() { doins -r Radiance* Ambiance* use gtk3 || { - rm -R "${D}"/usr/share/themes/*/gtk-3.0 || die + rm -R "${D}"/usr/share/themes/*/gtk-3.* || die } } diff --git a/x11-themes/light-themes/light-themes-19.04.ebuild b/x11-themes/light-themes/light-themes-19.04-r2.ebuild index 91b109330db3..115ed1fee18b 100644 --- a/x11-themes/light-themes/light-themes-19.04.ebuild +++ b/x11-themes/light-themes/light-themes-19.04-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,12 +15,11 @@ SRC_URI=" LICENSE="CC-BY-SA-3.0 CC-BY-SA-4.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="gtk3" +IUSE="" DEPEND="app-arch/xz-utils" RDEPEND=" x11-themes/gtk-engines-murrine - gtk3? ( x11-themes/gtk-engines-unico ) " S="${WORKDIR}"/${MY_PN}-${PV} @@ -56,8 +55,4 @@ src_compile() { src_install() { insinto /usr/share/themes doins -r Radiance* Ambiance* - - use gtk3 || { - rm -R "${D}"/usr/share/themes/*/gtk-3.0 || die - } } diff --git a/x11-themes/light-themes/light-themes-20.10-r2.ebuild b/x11-themes/light-themes/light-themes-20.10-r2.ebuild new file mode 100644 index 000000000000..115ed1fee18b --- /dev/null +++ b/x11-themes/light-themes/light-themes-20.10-r2.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN=ubuntu-themes + +DESCRIPTION="GTK2/GTK3 Ambiance and Radiance themes from Ubuntu" +HOMEPAGE="https://packages.ubuntu.com/zesty/light-themes" +SRC_URI=" + mirror://ubuntu/pool/main/${MY_PN:0:1}/${MY_PN}/${MY_PN}_${PV}.orig.tar.gz + https://dev.gentoo.org/~pacho/${PN}/Gentoo-Buttons-r1.tar.xz +" + +LICENSE="CC-BY-SA-3.0 CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/xz-utils" +RDEPEND=" + x11-themes/gtk-engines-murrine +" + +S="${WORKDIR}"/${MY_PN}-${PV} + +src_prepare() { + cp -RL Ambiance/ Ambiance-Gentoo || die + cp -RL Radiance/ Radiance-Gentoo || die + sed -i -e 's/Ambiance/Ambiance-Gentoo/g' Ambiance-Gentoo/index.theme \ + Ambiance-Gentoo/metacity-1/metacity-theme-1.xml || die + sed -i -e 's/Radiance/Radiance-Gentoo/g' Radiance-Gentoo/index.theme \ + Radiance-Gentoo/metacity-1/metacity-theme-1.xml || die + sed -i -e 's/nselected_bg_color:#f07746/nselected_bg_color:#755fbb/g' \ + Ambiance-Gentoo/gtk-2.0/gtkrc Ambiance-Gentoo/gtk-3.*/settings.ini \ + Radiance-Gentoo/gtk-2.0/gtkrc Radiance-Gentoo/gtk-3.*/settings.ini || die + sed -i -e 's/selected_bg_color #f07746/selected_bg_color #755fbb/g' \ + Ambiance-Gentoo/gtk-3.*/gtk-main.css \ + Radiance-Gentoo/gtk-3.*/gtk-main.css || die + + cp -f "${WORKDIR}"/Gentoo-Buttons/*.png "${S}"/Ambiance-Gentoo/metacity-1/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/*.png "${S}"/Radiance-Gentoo/metacity-1/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/assets/*.png "${S}"/Ambiance-Gentoo/gtk-3.0/assets/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/assets/*.png "${S}"/Ambiance-Gentoo/gtk-3.20/assets/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/assets/*.png "${S}"/Radiance-Gentoo/gtk-3.0/assets/. || die + cp -f "${WORKDIR}"/Gentoo-Buttons/assets/*.png "${S}"/Radiance-Gentoo/gtk-3.20/assets/. || die + + eapply_user +} + +src_compile() { + : +} + +src_install() { + insinto /usr/share/themes + doins -r Radiance* Ambiance* +} diff --git a/x11-themes/lxqt-themes/lxqt-themes-0.16.0.ebuild b/x11-themes/lxqt-themes/lxqt-themes-0.16.0.ebuild index 43322aa12ebf..1920c2762231 100644 --- a/x11-themes/lxqt-themes/lxqt-themes-0.16.0.ebuild +++ b/x11-themes/lxqt-themes/lxqt-themes-0.16.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,7 +13,7 @@ if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" else SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" fi LICENSE="LGPL-2.1+" diff --git a/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild b/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild index f9fb1e97c178..f5677afbdc4c 100644 --- a/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild +++ b/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 DESCRIPTION="Default freedesktop.org sound theme following the XDG theming specification" HOMEPAGE="https://www.freedesktop.org/wiki/Specifications/sound-theme-spec" @@ -10,9 +10,8 @@ SRC_URI="https://people.freedesktop.org/~mccann/dist/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2 CC-BY-3.0 CC-BY-SA-2.0" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="" -RDEPEND="" -DEPEND="sys-devel/gettext - dev-libs/glib:2 - >=dev-util/intltool-0.40" +BDEPEND=" + >=dev-util/intltool-0.40 + sys-devel/gettext +" |
