diff options
author | Michael Januszewski <spock@gentoo.org> | 2004-02-15 09:14:17 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2004-02-15 09:14:17 +0000 |
commit | ae21b25c12e59d58449bc6f053a4401947d0f973 (patch) | |
tree | c4cd2f87688a34c88df41060b838bf8d5a842793 /media-gfx/bootsplash | |
parent | Fix ac-wrapper.pl to also work with AC_PREREQ(2.50) (note the 2.50 and not 2.... (diff) | |
download | gentoo-2-ae21b25c12e59d58449bc6f053a4401947d0f973.tar.gz gentoo-2-ae21b25c12e59d58449bc6f053a4401947d0f973.tar.bz2 gentoo-2-ae21b25c12e59d58449bc6f053a4401947d0f973.zip |
Added a statically linked version of fbmngplay.
Diffstat (limited to 'media-gfx/bootsplash')
-rw-r--r-- | media-gfx/bootsplash/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/bootsplash/bootsplash-0.6-r5.ebuild | 15 |
2 files changed, 17 insertions, 3 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/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() { |