summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Januszewski <spock@gentoo.org>2004-02-15 09:14:17 +0000
committerMichael Januszewski <spock@gentoo.org>2004-02-15 09:14:17 +0000
commit9a7a0b40f87dcd9045cd8e099ce7869249efbcc5 (patch)
tree16208e8b987248b2b6a10a4ec205586f9a309418 /media-gfx/bootsplash
parentFix ac-wrapper.pl to also work with AC_PREREQ(2.50) (note the 2.50 and not 2.5). (diff)
downloadhistorical-9a7a0b40f87dcd9045cd8e099ce7869249efbcc5.tar.gz
historical-9a7a0b40f87dcd9045cd8e099ce7869249efbcc5.tar.bz2
historical-9a7a0b40f87dcd9045cd8e099ce7869249efbcc5.zip
Added a statically linked version of fbmngplay.
Diffstat (limited to 'media-gfx/bootsplash')
-rw-r--r--media-gfx/bootsplash/ChangeLog5
-rw-r--r--media-gfx/bootsplash/Manifest4
-rw-r--r--media-gfx/bootsplash/bootsplash-0.6-r5.ebuild15
3 files changed, 19 insertions, 5 deletions
diff --git a/media-gfx/bootsplash/ChangeLog b/media-gfx/bootsplash/ChangeLog
index 142be2671c03..6840b5c0fa5e 100644
--- a/media-gfx/bootsplash/ChangeLog
+++ b/media-gfx/bootsplash/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/bootsplash
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/ChangeLog,v 1.17 2004/02/06 20:58:22 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/ChangeLog,v 1.18 2004/02/15 09:14:17 spock Exp $
+
+ 15 Feb 2004; Michal Januszewski <spock@gentoo.org> bootsplash-0.6-r5.ebuild:
+ Added a statically linked version of fbmngplay, closes #41476.
06 Feb 2004; Michal Januszewski <spock@gentoo.org> bootsplash-0.6-r4.ebuild,
bootsplash-0.6-r5.ebuild:
diff --git a/media-gfx/bootsplash/Manifest b/media-gfx/bootsplash/Manifest
index 6c09ae396786..9ad6fae02d7d 100644
--- a/media-gfx/bootsplash/Manifest
+++ b/media-gfx/bootsplash/Manifest
@@ -1,9 +1,9 @@
MD5 2a77ed704b718a7396c97e5e39249e21 bootsplash-0.6-r1.ebuild 3342
MD5 000b763c35a5c1604070379a0c3a2a44 bootsplash-0.6-r3.ebuild 3437
-MD5 10b800f8ac5573cbd8302a717ac4b4c9 bootsplash-0.6-r5.ebuild 4999
+MD5 ac7c832cde29a6fe85e59bbf9a8aaed9 bootsplash-0.6-r5.ebuild 5392
MD5 6a3f6108142e93e8d969e4078e49bf27 bootsplash-0.6-r2.ebuild 3401
MD5 cb4bad8e460384e14ecd02984dea1d04 bootsplash-0.6-r4.ebuild 4961
-MD5 91eb39259f9282cbd5c45af8044ca6f1 ChangeLog 2992
+MD5 719436973f7475452b01358a2541a271 ChangeLog 3137
MD5 bee39157a0491e747442baf4eed96348 metadata.xml 263
MD5 3fa4a534a7a0b0dd84e1e99c032010b8 files/digest-bootsplash-0.6-r1 67
MD5 0bf6318b85e220548699e20dbb0b9390 files/digest-bootsplash-0.6-r2 70
diff --git a/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild b/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild
index 13afa44445f7..44c9d445c3be 100644
--- a/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild
+++ b/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild,v 1.3 2004/02/06 20:58:22 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/bootsplash-0.6-r5.ebuild,v 1.4 2004/02/15 09:14:17 spock Exp $
DESCRIPTION="Graphical backgrounds for frame buffer consoles"
HOMEPAGE="http://linux.tkdack.com/"
@@ -15,12 +15,18 @@ S="${WORKDIR}/${PF}"
DEPEND=">=media-libs/freetype-2
media-libs/libmng"
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i 's#$(LIBDIR)/libmng-mini.a#$(LIBDIR)/libmng.a $(LIBDIR)/libjpeg.a#' utils/fbmngplay/Makefile
+}
+
src_compile() {
# compile utils
# the util builds but the rc scripts have not been modified
# animated boot up require patches to the baselayout package
cd ${S}/utils/fbmngplay
- emake fbmngplay || die
+ emake || die
cd ${S}/utils/fbtruetype
emake || die
@@ -33,6 +39,7 @@ src_install() {
# Splash utilities
exeinto /sbin
doexe ${S}/utils/fbmngplay/fbmngplay
+ doexe ${S}/utils/fbmngplay/fbmngplay.static
doexe ${S}/utils/fbtruetype/fbtruetype
doexe ${S}/utils/fbtruetype/fbtruetype.static
newexe ${S}/utils/splashutils/splash splash.bin
@@ -96,6 +103,10 @@ pkg_postinst() {
einfo " rc-update add bootsplash default"
einfo to change the console images after startup
echo ""
+ einfo Please note that in case /usr is a separate partition
+ einfo "you'll need to use the statically linked versions of Bootplash"
+ einfo 'utilities (fbmngplay.static, fbtruetype.static) during boot-time.'
+ echo ""
}
pkg_config() {