summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2013-10-13 14:34:46 +0000
committerPacho Ramos <pacho@gentoo.org>2013-10-13 14:34:46 +0000
commit1c326f6c819b220dee75b3e0bf1c321bf8574437 (patch)
treeb35928eaedd7b7046023326d383471e057c50e34 /media-gfx/splash-themes-gentoo
parentBump (diff)
downloadgentoo-2-1c326f6c819b220dee75b3e0bf1c321bf8574437.tar.gz
gentoo-2-1c326f6c819b220dee75b3e0bf1c321bf8574437.tar.bz2
gentoo-2-1c326f6c819b220dee75b3e0bf1c321bf8574437.zip
Fix permissions, bug #470100
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'media-gfx/splash-themes-gentoo')
-rw-r--r--media-gfx/splash-themes-gentoo/ChangeLog8
-rw-r--r--media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r2.ebuild45
2 files changed, 52 insertions, 1 deletions
diff --git a/media-gfx/splash-themes-gentoo/ChangeLog b/media-gfx/splash-themes-gentoo/ChangeLog
index 7afe9091f717..ec8974d9c229 100644
--- a/media-gfx/splash-themes-gentoo/ChangeLog
+++ b/media-gfx/splash-themes-gentoo/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-gfx/splash-themes-gentoo
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/ChangeLog,v 1.29 2013/09/28 09:27:06 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/ChangeLog,v 1.30 2013/10/13 14:34:46 pacho Exp $
+
+*splash-themes-gentoo-20101212-r2 (13 Oct 2013)
+
+ 13 Oct 2013; Pacho Ramos <pacho@gentoo.org>
+ +splash-themes-gentoo-20101212-r2.ebuild:
+ Fix permissions, bug #470100
28 Sep 2013; Sergey Popov <pinkbyte@gentoo.org>
splash-themes-gentoo-20101212.ebuild:
diff --git a/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r2.ebuild b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r2.ebuild
new file mode 100644
index 000000000000..1e10721ab4a7
--- /dev/null
+++ b/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-gentoo/splash-themes-gentoo-20101212-r2.ebuild,v 1.1 2013/10/13 14:34:46 pacho Exp $
+
+EAPI="5"
+
+DESCRIPTION="A collection of Gentoo themes for splashutils"
+HOMEPAGE="http://dev.gentoo.org/~spock/"
+SRC_URI="mirror://gentoo/fbsplash-theme-emergence-r2.tar.bz2
+ mirror://gentoo/fbsplash-theme-gentoo-r2.tar.bz2
+ mirror://gentoo/fbsplash-theme-emerge-world-1.0.tar.bz2
+ http://fbsplash.berlios.de/themes/repo/natural_gentoo-9.0-r2.tar.bz2"
+
+LICENSE="freedist"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND=">=media-gfx/splashutils-1.1.9.5[png]"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}"
+RESTRICT="binchecks strip"
+
+src_prepare() {
+ sed -i -e 's/natural-gentoo/natural_gentoo/g' natural_gentoo/*.cfg || die 'sed failed'
+}
+
+src_install() {
+ # They need to be executable, bug #470100
+ insinto /etc/splash
+ doins -r *
+
+ # They need to be executable, bug #470100
+ fperms +x /etc/splash/emerge-world/scripts/*
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]]; then
+ elog "The upstream tarball for the 'Natural Gentoo' theme also contains a GRUB"
+ elog "splash image which is not installed by this ebuild. See:"
+ elog " http://www.kde-look.org/content/show.php?content=49074"
+ elog "if you are interested in this."
+ fi
+}