diff options
author | 2020-08-19 23:18:31 +0100 | |
---|---|---|
committer | 2020-08-19 23:18:31 +0100 | |
commit | 7ae1065c40131f62005ff905bd1c1ef103aedcc9 (patch) | |
tree | b8cd02ced87087387ab02db6509c9afb010e2f81 /x11-themes/arc-theme/arc-theme-20200502.ebuild | |
parent | x11-themes/arc-theme: Version bump to 20200819 (diff) | |
download | gentoo-7ae1065c40131f62005ff905bd1c1ef103aedcc9.tar.gz gentoo-7ae1065c40131f62005ff905bd1c1ef103aedcc9.tar.bz2 gentoo-7ae1065c40131f62005ff905bd1c1ef103aedcc9.zip |
x11-themes/arc-theme: Drop old 20200502
Package-Manager: Portage-3.0.3, Repoman-2.3.23
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'x11-themes/arc-theme/arc-theme-20200502.ebuild')
-rw-r--r-- | x11-themes/arc-theme/arc-theme-20200502.ebuild | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/x11-themes/arc-theme/arc-theme-20200502.ebuild b/x11-themes/arc-theme/arc-theme-20200502.ebuild deleted file mode 100644 index b4b199aa370f..000000000000 --- a/x11-themes/arc-theme/arc-theme-20200502.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -COMMIT="958b9b554cde5a8be7280bdf4a908ebe833cbd81" - -# USE="-* gtk2 gtk3 xfce" ebuild ${P}.ebuild clean compile -# cd ~portage/x11-themes/${P}/work -# make -j -C */common/gtk-3.0/3.18 -# find */common/{gtk-2.0,gtk-3.0/3.*,xfwm4} -name "*.png" ! -path "*/menubar-toolbar/*" | xargs tar Jcvf /usr/portage/distfiles/${P}-pngs.tar.xz --owner=root --group=root - -inherit autotools - -DESCRIPTION="A flat theme with transparent elements for GTK+3, GTK+2 and GNOME Shell" -HOMEPAGE="https://github.com/jnsh/arc-theme" -SRC_URI="https://github.com/jnsh/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz - 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 - ) -" - -S="${WORKDIR}/${PN}-${COMMIT}" - -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) -} - -src_compile() { - # fontconfig issue? - # https://bugs.gentoo.org/666418#c28 - use pre-rendered || - addpredict "${BROOT}"/usr/share/inkscape/fonts/.uuid.TMP-XXXXXX - - default -} |