[mate-extra/mate-screensaver] Add for testing

This commit is contained in:
Joost Ruis
2012-06-05 17:33:53 +00:00
parent a624433917
commit df95b37b9f
2 changed files with 146 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
DIST mate-screensaver-1.2.0.tar.xz 4413780 RMD160 ec81be92b8845188d4718cbc25c85df1e4d3c2b6 SHA1 26f1950de69682034e4374a5bf4048b99c8395aa SHA256 9cb9bbfafc99075234c313f03b34e2b7a57e250c5b707773eb871f61bd51f3a8
EBUILD mate-screensaver-1.2.0.ebuild 4230 RMD160 b9539c049a58cbd88e4615c50fd9bf8bcdaab631 SHA1 3cb2218681d171e90068b4060e0ff24fe7776150 SHA256 d510be9bc2101dbd63264f74777d39f5c3314850a87a433c62106cbc6f55bf18
@@ -0,0 +1,144 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $
EAPI="2"
inherit eutils mate multilib autotools mate-desktop.org
DESCRIPTION="Replaces xscreensaver, integrating with the desktop."
HOMEPAGE="http://mate-desktop.org"
SRC_URI="${SRC_URI}
branding? ( http://www.gentoo.org/images/gentoo-logo.svg )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
KERNEL_IUSE="kernel_linux"
IUSE="branding debug doc libnotify opengl pam $KERNEL_IUSE"
RDEPEND="mate-base/mate-conf
>=x11-libs/gtk+-2.14.0:2
mate-base/mate-desktop
mate-base/mate-menus
>=dev-libs/glib-2.15:2
mate-base/libmatekbd
>=dev-libs/dbus-glib-0.71
libnotify? ( x11-libs/libnotify )
opengl? ( virtual/opengl )
pam? ( virtual/pam )
!pam? ( kernel_linux? ( sys-apps/shadow ) )
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrandr
x11-libs/libXScrnSaver
x11-libs/libXxf86misc
x11-libs/libXxf86vm"
DEPEND="${RDEPEND}
virtual/pkgconfig
>=dev-util/intltool-0.40
doc? (
app-text/xmlto
~app-text/docbook-xml-dtd-4.1.2
~app-text/docbook-xml-dtd-4.4 )
x11-proto/xextproto
x11-proto/randrproto
x11-proto/scrnsaverproto
x11-proto/xf86miscproto
mate-base/mate-common"
DOCS="AUTHORS ChangeLog HACKING NEWS README TODO"
pkg_setup() {
G2CONF="${G2CONF}
$(use_enable doc docbook-docs)
$(use_enable debug)
$(use_with libnotify)
$(use_with opengl gl)
$(use_enable pam)
--enable-locking
--with-xf86gamma-ext
--with-kbd-layout-indicator
--with-xscreensaverdir=/usr/share/xscreensaver/config
--with-xscreensaverhackdir=/usr/$(get_libdir)/misc/xscreensaver"
}
src_prepare() {
# libnotify support was removed from trunk, so not needed for next release
# epatch "${FILESDIR}/${P}-libnotify-0.7.patch"
# The dialog uses libxklavier directly, so link against it, upstream bug #634949
# epatch "${FILESDIR}/${P}-libxklavier-configure.patch"
# Fix QA warning, upstream bug #637676
# epatch "${FILESDIR}/${P}-popsquares-header.patch"
# Fix fading on nvidia setups, upstream bugs #610294 and #618932
# epatch "${FILESDIR}/${P}-nvidia-fade.patch"
# epatch "${FILESDIR}/${P}-nvidia-fade2.patch"
# Don't run twice, upstream bug #642462
# epatch "${FILESDIR}/${P}-prevent-twice.patch"
# Don't user name owner proxies for SessionManager, upstream bug #611207
# epatch "${FILESDIR}/${P}-name-manager.patch"
# Fix intltoolize broken file, see upstream #577133
# sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
# || die "sed failed"
intltoolize --force --copy --automake || die "intltoolize failed"
eautoreconf
mate_src_prepare
}
src_install() {
mate_src_install
# Install the conversion script in the documentation
dodoc "${S}/data/migrate-xscreensaver-config.sh"
dodoc "${S}/data/xscreensaver-config.xsl"
# Conversion information
sed -e "s:\${PF}:${PF}:" < "${FILESDIR}/xss-conversion-2.txt" \
> "${S}/xss-conversion.txt" || die "sed failed"
dodoc "${S}/xss-conversion.txt"
# Non PAM users will need this suid to read the password hashes.
# OpenPAM users will probably need this too when
# http://bugzilla.gnome.org/show_bug.cgi?id=370847
# is fixed.
if ! use pam ; then
fperms u+s /usr/libexec/gnome-screensaver-dialog
fi
if use branding ; then
insinto /usr/share/pixmaps/
doins "${DISTDIR}/gentoo-logo.svg" || die "doins 1 failed"
insinto /usr/share/applications/screensavers/
doins "${FILESDIR}/gentoologo-floaters.desktop" || die "doins 2 failed"
fi
}
pkg_postinst() {
mate_pkg_postinst
if has_version "<x11-base/xorg-server-1.5.3-r4" ; then
ewarn "You have a too old xorg-server installation. This will cause"
ewarn "gnome-screensaver to eat up your CPU. Please consider upgrading."
echo
fi
if has_version "<x11-misc/xscreensaver-4.22-r2" ; then
ewarn "You have xscreensaver installed, you probably want to disable it."
ewarn "To prevent a duplicate screensaver entry in the menu, you need to"
ewarn "build xscreensaver with -gnome in the USE flags."
ewarn "echo \"x11-misc/xscreensaver -gnome\" >> /etc/portage/package.use"
echo
fi
elog "Information for converting screensavers is located in "
elog "/usr/share/doc/${PF}/xss-conversion.txt.${PORTAGE_COMPRESS}"
}