summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmadeusz Piotr Żołnowski <aidecoe@gentoo.org>2011-03-29 16:55:01 +0000
committerAmadeusz Piotr Żołnowski <aidecoe@gentoo.org>2011-03-29 16:55:01 +0000
commitbc4639e04e40fb859669e8145c9e19b68c26d539 (patch)
treee13fcd9bca2513e1198df044b9dd566e53dc9843 /sys-boot/plymouth
parentRemoved deprecated hardened-sources-2.6.32-rX versions (diff)
downloadgentoo-2-bc4639e04e40fb859669e8145c9e19b68c26d539.tar.gz
gentoo-2-bc4639e04e40fb859669e8145c9e19b68c26d539.tar.bz2
gentoo-2-bc4639e04e40fb859669e8145c9e19b68c26d539.zip
sys-boot/plymouth: Removed obsolete plymouth-0.8.3.ebuild.
(Portage version: 2.1.9.45/cvs/Linux x86_64)
Diffstat (limited to 'sys-boot/plymouth')
-rw-r--r--sys-boot/plymouth/ChangeLog6
-rw-r--r--sys-boot/plymouth/plymouth-0.8.3.ebuild80
2 files changed, 5 insertions, 81 deletions
diff --git a/sys-boot/plymouth/ChangeLog b/sys-boot/plymouth/ChangeLog
index defe695209c8..eb882a84c2a5 100644
--- a/sys-boot/plymouth/ChangeLog
+++ b/sys-boot/plymouth/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-boot/plymouth
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/plymouth/ChangeLog,v 1.5 2011/03/29 12:54:46 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/plymouth/ChangeLog,v 1.6 2011/03/29 16:55:01 aidecoe Exp $
+
+ 29 Mar 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+ -plymouth-0.8.3.ebuild:
+ Removed obsolete ebuild.
29 Mar 2011; Christoph Mende <angelos@gentoo.org> plymouth-0.8.3.ebuild,
plymouth-0.8.3-r1.ebuild:
diff --git a/sys-boot/plymouth/plymouth-0.8.3.ebuild b/sys-boot/plymouth/plymouth-0.8.3.ebuild
deleted file mode 100644
index 7c1ff7f60753..000000000000
--- a/sys-boot/plymouth/plymouth-0.8.3.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/plymouth/plymouth-0.8.3.ebuild,v 1.5 2011/03/29 12:54:46 angelos Exp $
-
-EAPI="3"
-
-inherit autotools-utils
-
-DESCRIPTION="Graphical boot animation (splash) and logger"
-HOMEPAGE="http://cgit.freedesktop.org/plymouth/"
-SRC_URI="http://cgit.freedesktop.org/${PN}/snapshot/${P}.tar.bz2
- http://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/gentoo-logo.png"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE_VIDEO_CARDS="video_cards_intel video_cards_nouveau video_cards_radeon"
-IUSE="${IUSE_VIDEO_CARDS} +branding gdm +pango"
-
-DEPEND=">=media-libs/libpng-1.2.16
- >=x11-libs/gtk+-2.12:2
- pango? ( >=x11-libs/pango-1.21 )
- video_cards_intel? ( x11-libs/libdrm[video_cards_intel] )
- video_cards_nouveau? ( x11-libs/libdrm[video_cards_nouveau] )
- video_cards_radeon? ( x11-libs/libdrm[video_cards_radeon] )
- "
-RDEPEND="${DEPEND}
- >=sys-kernel/dracut-007
- "
-
-DOCS=(AUTHORS ChangeLog NEWS README TODO)
-
-PATCHES=(
- "${FILESDIR}"/${PV}-drm-reduce-minimum-build-requirements.patch
- "${FILESDIR}"/${PV}-image-replace-deprecated-libpng-function.patch
- "${FILESDIR}"/${PV}-gentoo-fb-path.patch
- )
-
-src_prepare() {
- autotools-utils_src_prepare
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --enable-static=no
- $(use_enable pango)
- $(use_enable gdm gdm-transition)
- $(use_enable video_cards_intel libdrm_intel)
- $(use_enable video_cards_nouveau libdrm_nouveau)
- $(use_enable video_cards_radeon libdrm_radeon)
- )
- autotools-utils_src_configure
-}
-
-src_install() {
- autotools-utils_src_install
-
- mv "${D}/$(get_libdir)"/libply{,-splash-core}.la \
- "${D}/usr/${get_libdir}"/ || die 'mv *.la files failed'
-
- newinitd "${FILESDIR}"/plymouth.initd plymouth || die 'initd failed'
-
- if use branding ; then
- insinto /usr/share/plymouth
- newins "${DISTDIR}"/gentoo-logo.png bizcom.png || die 'branding failed'
- fi
-}
-
-pkg_postinst() {
- elog "Plymouth initramfs utilities scripts are located in"
- elog "/usr/libexec/plymouth"
- elog ""
- elog "Follow instructions on <http://en.gentoo-wiki.com/wiki/Plymouth> to"
- elog "setup Plymouth."
- echo
- ewarn "You need to disable 'interactive' feature either in /etc/conf.d/rc"
- ewarn "(baselayout-1) or /etc/rc.conf (OpenRC) to make Plymouth work"
- ewarn "properly with init system."
-}