diff options
author | James Le Cuirot <chewi@gentoo.org> | 2020-05-10 11:31:10 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2020-05-10 11:31:42 +0100 |
commit | 69ae1cbc3b8bbbb7ed4f63bd7547ccc255b1fb9f (patch) | |
tree | 0c43a251db08d617a4ff24fc45e821921442921c /x11-themes/arc-theme/arc-theme-20190917.ebuild | |
parent | x11-themes/arc-theme: Bump to 20200502 snapshot, fixes Inkscape issue (diff) | |
download | gentoo-69ae1cbc3b8bbbb7ed4f63bd7547ccc255b1fb9f.tar.gz gentoo-69ae1cbc3b8bbbb7ed4f63bd7547ccc255b1fb9f.tar.bz2 gentoo-69ae1cbc3b8bbbb7ed4f63bd7547ccc255b1fb9f.zip |
x11-themes/arc-theme: Drop old 20190917
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'x11-themes/arc-theme/arc-theme-20190917.ebuild')
-rw-r--r-- | x11-themes/arc-theme/arc-theme-20190917.ebuild | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/x11-themes/arc-theme/arc-theme-20190917.ebuild b/x11-themes/arc-theme/arc-theme-20190917.ebuild deleted file mode 100644 index 214bc1849753..000000000000 --- a/x11-themes/arc-theme/arc-theme-20190917.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# USE="-* gtk2 gtk3 xfce" ebuild ${P}.ebuild clean compile -# cd ~portage/x11-themes/${P}/work -# make -j -C ${P}/common/gtk-3.0/3.18 -# find ${P}/common/{gtk-2.0,gtk-3.0/3.*,xfwm4} -name "*.png" ! -path "*/menubar-toolbar/*" | xargs tar Jcvf /usr/portage/distfiles/${P}-pngs.tar.xz - -inherit autotools - -DESCRIPTION="A flat theme with transparent elements for GTK+3, GTK+2 and GNOME Shell" -HOMEPAGE="https://github.com/arc-design/arc-theme" -SRC_URI="https://github.com/arc-design/${PN}/releases/download/${PV}/${P}.tar.xz - pre-rendered? ( https://dev.gentoo.org/~chewi/distfiles/${P}-pngs.tar.xz )" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc64 ~x86" -IUSE="cinnamon gnome-shell +gtk2 +gtk3 mate +pre-rendered xfce" - -SASSC_DEPEND=" - dev-lang/sassc -" - -SVG_DEPEND=" - !pre-rendered? ( - media-gfx/inkscape - media-gfx/optipng - ) -" - -# Supports various GTK+3 versions and uses pkg-config to determine which -# set of files to install. Updates will break it but only this fix will -# help. See https://github.com/horst3180/arc-theme/pull/436. The same -# applies to GNOME Shell but I don't know whether that's fixable. -BDEPEND=" - cinnamon? ( - ${SASSC_DEPEND} - ) - gnome-shell? ( - ${SASSC_DEPEND} - >=gnome-base/gnome-shell-3.18 - ) - gtk2? ( - ${SVG_DEPEND} - ) - gtk3? ( - ${SASSC_DEPEND} - ${SVG_DEPEND} - virtual/pkgconfig - >=x11-libs/gtk+-3.18:3 - ) - xfce? ( - ${SVG_DEPEND} - ) -" - -# gnome-themes-standard is only needed by GTK+2 for the Adwaita -# engine. This engine is built into GTK+3. -RDEPEND=" - gtk2? ( - x11-themes/gnome-themes-standard - x11-themes/gtk-engines-murrine - ) -" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - use pre-rendered && - export INKSCAPE="${BROOT}"/bin/false OPTIPNG="${BROOT}"/bin/false - - econf \ - --disable-openbox \ - --disable-plank \ - --disable-unity \ - $(use_enable cinnamon) \ - $(use_enable gtk2) \ - $(use_enable gtk3) \ - $(use_enable gnome-shell) \ - $(use_enable mate metacity) \ - $(use_enable xfce xfwm) -} |