2024-01-22 12:14:25 +03:00
|
|
|
# Copyright 1999-2024 Gentoo Authors
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2021-04-02 10:49:46 +03:00
|
|
|
EAPI=7
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
DESCRIPTION="SLiM (Simple Login Manager) themes pack"
|
2016-07-27 12:26:17 +03:00
|
|
|
HOMEPAGE="https://sourceforge.net/projects/slim.berlios/"
|
2021-04-02 10:49:46 +03:00
|
|
|
SRC_URI="
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-1.2.3-themepack1a.tar.gz
|
2015-03-03 15:02:00 +03:00
|
|
|
mirror://sourceforge/project/slim.berlios/slim-gentoo-simple.tar.bz2
|
2011-11-09 11:33:19 +04:00
|
|
|
mirror://gentoo/slim-archlinux.tar.gz
|
2015-03-03 15:02:00 +03:00
|
|
|
mirror://sourceforge/project/slim.berlios/slim-debian-moreblue.tar.bz2
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-fingerprint.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-flat.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-lunar-0.4.tar.bz2
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-previous.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-rainbow.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-rear-window.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-scotland-road.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-subway.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-wave.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-zenwalk.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-archlinux-simple.tar.gz
|
|
|
|
mirror://sourceforge/project/slim.berlios/slim-lake.tar.gz
|
2011-11-09 11:33:19 +04:00
|
|
|
mirror://gentoo/slim-gentoo-1.0.tar.bz2
|
|
|
|
http://www.xfce-look.org/CONTENT/content-files/48605-xfce-g-box-slim-0.1.tar.gz
|
2015-03-03 15:02:00 +03:00
|
|
|
http://www.konstantinhansen.de/source/slim_themes/gentoo_10_purple/gentoo_10_purple.tar.bz2 -> gentoo_10_purple-r1.tar.bz2
|
|
|
|
http://www.konstantinhansen.de/source/slim_themes/gentoo_10_blue/gentoo_10_blue.tar.bz2 -> gentoo_10_blue-r1.tar.bz2
|
2021-04-02 10:49:46 +03:00
|
|
|
http://www.konstantinhansen.de/source/slim_themes/gentoo_10_dark/gentoo_10_dark.tar.bz2 -> gentoo_10_dark-r1.tar.bz2
|
|
|
|
"
|
|
|
|
S="${WORKDIR}"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2024-01-22 12:14:25 +03:00
|
|
|
KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv sparc x86"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
RDEPEND="x11-misc/slim"
|
|
|
|
|
|
|
|
RESTRICT="strip binchecks"
|
|
|
|
|
2021-04-02 10:49:46 +03:00
|
|
|
PATCHES=(
|
2021-04-03 06:49:43 +03:00
|
|
|
"${FILESDIR}/slim-theme-flat.patch"
|
2021-04-02 10:49:46 +03:00
|
|
|
)
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
src_install() {
|
|
|
|
for i in capernoited flower2 gentoo isolated lotus-{sage,midnight} \
|
|
|
|
mindlock slim-archlinux subway xfce-g-box Zenwalk ; do
|
|
|
|
rm ${i}/README || die "rm README"
|
|
|
|
done
|
|
|
|
|
|
|
|
rm debian-moreblue/COPY* lotus-{sage,midnight}/{LICENSE*,COPY*} \
|
|
|
|
parallel-dimensions/{LICENSE*,COPY*} xfce-g-box/COPYRIGHT.panel \
|
|
|
|
|| die "rm LICENSE"
|
|
|
|
|
|
|
|
local themesdir="/usr/share/slim/themes"
|
|
|
|
insinto ${themesdir}
|
|
|
|
doins -r .
|
|
|
|
}
|