public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: ChangeLog splashutils-1.5.4.3-r2.ebuild
@ 2010-03-03 20:06 Michael Januszewski (spock)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Januszewski (spock) @ 2010-03-03 20:06 UTC (permalink / raw
  To: gentoo-commits

spock       10/03/03 20:06:58

  Modified:             ChangeLog
  Added:                splashutils-1.5.4.3-r2.ebuild
  Log:
  Bump internal libpng.
  (Portage version: 2.2_rc64/cvs/Linux x86_64)

Revision  Changes    Path
1.169                media-gfx/splashutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.169&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.169&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?r1=1.168&r2=1.169

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- ChangeLog	2 Mar 2010 20:55:23 -0000	1.168
+++ ChangeLog	3 Mar 2010 20:06:57 -0000	1.169
@@ -1,6 +1,12 @@
 # ChangeLog for media-gfx/splashutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.168 2010/03/02 20:55:23 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.169 2010/03/03 20:06:57 spock Exp $
+
+*splashutils-1.5.4.3-r2 (03 Mar 2010)
+
+  03 Mar 2010; Michał Januszewski <spock@gentoo.org>
+  +splashutils-1.5.4.3-r2.ebuild:
+  Bump internal libpng.
 
 *splashutils-1.5.4.3-r1 (02 Mar 2010)
 



1.1                  media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.1&content-type=text/plain

Index: splashutils-1.5.4.3-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.1 2010/03/03 20:06:57 spock Exp $

EAPI="2"

inherit autotools eutils multilib toolchain-funcs

MISCSPLASH="miscsplashutils-0.1.8"
GENTOOSPLASH="splashutils-gentoo-1.0.16"
V_JPEG="8a"
V_PNG="1.2.43"
V_ZLIB="1.2.3"
V_FT="2.3.12"

ZLIBSRC="libs/zlib-${V_ZLIB}"
LPNGSRC="libs/libpng-${V_PNG}"
JPEGSRC="libs/jpeg-${V_JPEG}"
FT2SRC="libs/freetype-${V_FT}"

RESTRICT="test"
IUSE="hardened +png +truetype +mng gpm fbcondecor"

DESCRIPTION="Framebuffer splash utilities."
HOMEPAGE="http://fbsplash.berlios.de"
SRC_URI="mirror://berlios/fbsplash/${PN}-lite-${PV}.tar.bz2
	mirror://berlios/fbsplash/${GENTOOSPLASH}.tar.bz2
	mirror://gentoo/${MISCSPLASH}.tar.bz2
	mirror://sourceforge/libpng/libpng-${V_PNG}.tar.bz2
	ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v${V_JPEG}.tar.gz
	mirror://sourceforge/freetype/freetype-${V_FT}.tar.bz2
	http://www.gzip.org/zlib/zlib-${V_ZLIB}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND="gpm? ( sys-libs/gpm )
	truetype? ( >=media-libs/freetype-2 )
	png? ( >=media-libs/libpng-1.2.7 )
	mng? ( media-libs/lcms media-libs/libmng )
	>=media-libs/jpeg-6b:0
	>=sys-apps/baselayout-1.9.4-r5
	app-arch/cpio
	media-gfx/fbgrab
	!sys-apps/lcdsplash"
DEPEND="${RDEPEND}
	>=dev-libs/klibc-1.5
	dev-util/pkgconfig"

S="${WORKDIR}/${P/_/-}"
SG="${WORKDIR}/${GENTOOSPLASH}"
SM="${WORKDIR}/${MISCSPLASH}"

pkg_setup() {
	if use hardened; then
		ewarn "Due to problems with klibc, it is currently impossible to compile splashutils"
		ewarn "with 'hardened' GCC flags. As a workaround, the package will be compiled with"
		ewarn "-fno-stack-protector. Hardened GCC features will not be used while building"
		ewarn "the splash kernel helper."
	fi
}

src_prepare() {
	mv "${WORKDIR}"/{libpng-${V_PNG},jpeg-${V_JPEG},zlib-${V_ZLIB},freetype-${V_FT}} "${S}/libs"
	# We need to delete the Makefile and let it be rebuilt when splashutils
	# is being configured. Either that, or we end up with a segfaulting kernel
	# helper.
	rm "${S}/libs/zlib-${V_ZLIB}/Makefile"

	cd "${S}"
	ln -sf "${S}/src" "${WORKDIR}/core"

	if ! tc-is-cross-compiler && \
	   has_version "sys-devel/gcc:$(gcc-version)[vanilla]" ; then
		ewarn "Your GCC was built with the 'vanilla' flag set. If you can't compile"
		ewarn "splashutils, you're on your own, as this configuration is not supported."
	else
		# This should make splashutils compile on systems with hardened GCC.
		sed -e 's@K_CFLAGS =@K_CFLAGS = -fno-stack-protector@' -i "${S}/Makefile.in"
	fi

	if ! use truetype ; then
		sed -i -e 's/fbtruetype kbd/kbd/' "${SM}/Makefile"
	fi

	epatch "${FILESDIR}"/splashutils-1.5.4.3-makefile.patch
	epatch "${FILESDIR}"/splashutils-1.5.4.3-splash_geninitramfs.patch
	epatch "${FILESDIR}"/splashutils-1.5.4.3-libjpeg.patch

	cd "${SG}"
	if has_version ">=sys-apps/openrc-0.4.0"; then
		epatch "${FILESDIR}"/splashutils-openrc-0.4-fix.patch
		if has_version ">=sys-apps/openrc-0.4.3"; then
			epatch "${FILESDIR}"/splashutils-openrc-0.4.3-runlevel-fix.patch
		fi
	fi
	epatch "${FILESDIR}"/splashutils-1.5.4.3-fix_rc_var.patch
	epatch "${FILESDIR}"/splashutils-1.5.4.3-openrc-umount-fix.patch
	epatch "${FILESDIR}"/splashutils-1.5.4.3-nondefault-runlevel.patch
	cd "${S}"

	rm -f m4/*
	eautoreconf
}

src_configure() {
	tc-export CC
	cd "${SM}"
	emake CC="${CC}" LIB=$(get_libdir) STRIP=true || die "failed to build miscsplashutils"

	cd "${S}"
	econf \
		$(use_with png) \
		$(use_with mng) \
		$(use_with gpm) \
		$(use_with truetype ttf) \
		$(use_with truetype ttf-kernel) \
		$(use_enable fbcondecor) \
		--docdir=/usr/share/doc/${PF} \
		--with-freetype2-src=${FT2SRC} \
		--with-jpeg-src=${JPEGSRC} \
		--with-lpng-src=${LPNGSRC} \
		--with-zlib-src=${ZLIBSRC} \
		--with-essential-libdir=/$(get_libdir) || die "failed to configure splashutils"
}

src_compile() {
	emake CC="${CC}" STRIP="true" || die "failed to build splashutils"

	if has_version ">=sys-apps/baselayout-1.13.99"; then
		cd "${SG}"
		emake LIB=$(get_libdir) || die "failed to build the splash plugin"
	fi
}

src_install() {
	local LIB=$(get_libdir)

	cd "${SM}"
	make DESTDIR="${D}" LIB=${LIB} install || die

	cd "${S}"
	make DESTDIR="${D}" STRIP="true" install || die

	mv "${D}"/usr/${LIB}/libfbsplash.so* "${D}"/${LIB}/
	gen_usr_ldscript libfbsplash.so

	echo 'CONFIG_PROTECT_MASK="/etc/splash"' > 99splash
	doenvd 99splash

	if use fbcondecor ; then
		newinitd "${SG}"/init-fbcondecor fbcondecor
		newconfd "${SG}"/fbcondecor.conf fbcondecor
	fi
	newconfd "${SG}"/splash.conf splash

	insinto /usr/share/${PN}
	doins "${SG}"/initrd.splash

	insinto /etc/splash
	doins "${SM}"/fbtruetype/luxisri.ttf

	if has_version ">=sys-apps/baselayout-1.13.99"; then
		cd "${SG}"
		make DESTDIR="${D}" LIB=${LIB} install || die "failed to install the splash plugin"
	else
		cp "${SG}"/splash-functions-bl1.sh "${D}"/sbin/
	fi

	sed -i -e "s#/lib/splash#/${LIB}/splash#" "${D}"/sbin/splash-functions.sh
	keepdir /${LIB}/splash/{tmp,cache,bin}
	dosym /${LIB}/splash/bin/fbres /sbin/fbres
}

pkg_preinst() {
	has_version "<${CATEGORY}/${PN}-1.0"
	previous_less_than_1_0=$?

	has_version "<${CATEGORY}/${PN}-1.5.3"
	previous_less_than_1_5_3=$?
}

pkg_postinst() {
	if has_version sys-fs/devfsd || ! has_version sys-fs/udev ; then
		elog "This package has been designed with udev in mind. Other solutions, such as"
		elog "devfs or a static /dev tree might work, but are generally discouraged and"
		elog "not supported. If you decide to switch to udev, you might want to have a"
		elog "look at 'The Gentoo udev Guide', which can be found at"
		elog "  http://www.gentoo.org/doc/en/udev-guide.xml"
		elog ""
	fi

	if [[ $previous_less_than_1_0 = 0 ]] ; then
		elog "Since you are upgrading from a pre-1.0 version, please make sure that you"
		elog "rebuild your initrds. You can use the splash_geninitramfs script to do that."
		elog ""
	fi

	if [[ $previous_less_than_1_5_3 = 0 ]] && ! use fbcondecor ; then
		elog "Starting with splashutils-1.5.3, support for the fbcondecor kernel patch"
		elog "is optional and dependent on the the 'fbcondecor' USE flag.  If you wish"
		elog "to use fbcondecor, run:"
		elog "  echo \"media-gfx/splashutils fbcondecor\" >> /etc/portage/package.use"
		elog "and re-emerge splashutils."
	fi

	if ! test -f /proc/cmdline ||
		! egrep -q '(console=tty1|CONSOLE=/dev/tty1)' /proc/cmdline ; then
		elog "It is required that you add 'console=tty1' to your kernel"
		elog "command line parameters."
		elog ""
		elog "After these modifications, the relevant part of the kernel command"
		elog "line might look like:"
		elog "  splash=silent,fadein,theme:emergence console=tty1"
		elog ""
	fi

	if ! has_version 'media-gfx/splash-themes-livecd' &&
		! has_version 'media-gfx/splash-themes-gentoo'; then
		elog "The sample Gentoo themes (emergence, gentoo) have been removed from the"
		elog "core splashutils package. To get some themes you might want to emerge:"
		elog "  media-gfx/splash-themes-livecd"
		elog "  media-gfx/splash-themes-gentoo"
	fi

	elog "Please note that the 'fbsplash' kernel patch has now been renamed to"
	elog "'fbcondecor'.  Accordingly, the old 'splash' initscript is now called"
	elog "'fbcondecor'.  Make sure you update your system.  See:"
	elog "    http://dev.gentoo.org/~spock/projects/fbcondecor/#history"
	elog "for further info about the name changes."
	elog ""
	elog "Also note that splash_util has now been split into splash_util, fbsplashd"
	elog "and fbcondecor_ctl."
}






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: ChangeLog splashutils-1.5.4.3-r2.ebuild
@ 2010-03-04  7:59 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-03-04  7:59 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/03/04 07:59:42

  Modified:             ChangeLog splashutils-1.5.4.3-r2.ebuild
  Log:
  x86 stable wrt security bug #307525
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.170                media-gfx/splashutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.170&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.170&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?r1=1.169&r2=1.170

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog	3 Mar 2010 20:06:57 -0000	1.169
+++ ChangeLog	4 Mar 2010 07:59:42 -0000	1.170
@@ -1,6 +1,10 @@
 # ChangeLog for media-gfx/splashutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.169 2010/03/03 20:06:57 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.170 2010/03/04 07:59:42 phajdan.jr Exp $
+
+  04 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  splashutils-1.5.4.3-r2.ebuild:
+  x86 stable wrt security bug #307525
 
 *splashutils-1.5.4.3-r2 (03 Mar 2010)
 



1.2                  media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?r1=1.1&r2=1.2

Index: splashutils-1.5.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- splashutils-1.5.4.3-r2.ebuild	3 Mar 2010 20:06:57 -0000	1.1
+++ splashutils-1.5.4.3-r2.ebuild	4 Mar 2010 07:59:42 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.1 2010/03/03 20:06:57 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.2 2010/03/04 07:59:42 phajdan.jr Exp $
 
 EAPI="2"
 
@@ -33,7 +33,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 RDEPEND="gpm? ( sys-libs/gpm )
 	truetype? ( >=media-libs/freetype-2 )
 	png? ( >=media-libs/libpng-1.2.7 )






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: ChangeLog splashutils-1.5.4.3-r2.ebuild
@ 2010-03-07 15:38 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2010-03-07 15:38 UTC (permalink / raw
  To: gentoo-commits

maekke      10/03/07 15:38:37

  Modified:             ChangeLog splashutils-1.5.4.3-r2.ebuild
  Log:
  amd64 stable, bug #307525
  (Portage version: 2.2_rc65/cvs/Linux x86_64)

Revision  Changes    Path
1.171                media-gfx/splashutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?r1=1.170&r2=1.171

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	4 Mar 2010 07:59:42 -0000	1.170
+++ ChangeLog	7 Mar 2010 15:38:36 -0000	1.171
@@ -1,6 +1,10 @@
 # ChangeLog for media-gfx/splashutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.170 2010/03/04 07:59:42 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.171 2010/03/07 15:38:36 maekke Exp $
+
+  07 Mar 2010; Markus Meier <maekke@gentoo.org>
+  splashutils-1.5.4.3-r2.ebuild:
+  amd64 stable, bug #307525
 
   04 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   splashutils-1.5.4.3-r2.ebuild:



1.3                  media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?r1=1.2&r2=1.3

Index: splashutils-1.5.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- splashutils-1.5.4.3-r2.ebuild	4 Mar 2010 07:59:42 -0000	1.2
+++ splashutils-1.5.4.3-r2.ebuild	7 Mar 2010 15:38:36 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.2 2010/03/04 07:59:42 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.3 2010/03/07 15:38:36 maekke Exp $
 
 EAPI="2"
 
@@ -33,7 +33,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 RDEPEND="gpm? ( sys-libs/gpm )
 	truetype? ( >=media-libs/freetype-2 )
 	png? ( >=media-libs/libpng-1.2.7 )






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: ChangeLog splashutils-1.5.4.3-r2.ebuild
@ 2010-03-09 22:11 Joseph Jezak (josejx)
  0 siblings, 0 replies; 7+ messages in thread
From: Joseph Jezak (josejx) @ 2010-03-09 22:11 UTC (permalink / raw
  To: gentoo-commits

josejx      10/03/09 22:11:11

  Modified:             ChangeLog splashutils-1.5.4.3-r2.ebuild
  Log:
  Marked ppc stable for bug #307525.
  (Portage version: 2.1.7.17/cvs/Linux x86_64)

Revision  Changes    Path
1.172                media-gfx/splashutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.172&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.172&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?r1=1.171&r2=1.172

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog	7 Mar 2010 15:38:36 -0000	1.171
+++ ChangeLog	9 Mar 2010 22:11:10 -0000	1.172
@@ -1,6 +1,10 @@
 # ChangeLog for media-gfx/splashutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.171 2010/03/07 15:38:36 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.172 2010/03/09 22:11:10 josejx Exp $
+
+  09 Mar 2010; Joseph Jezak <josejx@gentoo.org>
+  splashutils-1.5.4.3-r2.ebuild:
+  Marked ppc stable for bug #307525.
 
   07 Mar 2010; Markus Meier <maekke@gentoo.org>
   splashutils-1.5.4.3-r2.ebuild:



1.4                  media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?r1=1.3&r2=1.4

Index: splashutils-1.5.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- splashutils-1.5.4.3-r2.ebuild	7 Mar 2010 15:38:36 -0000	1.3
+++ splashutils-1.5.4.3-r2.ebuild	9 Mar 2010 22:11:10 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.3 2010/03/07 15:38:36 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.4 2010/03/09 22:11:10 josejx Exp $
 
 EAPI="2"
 
@@ -33,7 +33,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 RDEPEND="gpm? ( sys-libs/gpm )
 	truetype? ( >=media-libs/freetype-2 )
 	png? ( >=media-libs/libpng-1.2.7 )






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: ChangeLog splashutils-1.5.4.3-r2.ebuild
@ 2010-04-04 15:20 Michael Januszewski (spock)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Januszewski (spock) @ 2010-04-04 15:20 UTC (permalink / raw
  To: gentoo-commits

spock       10/04/04 15:20:23

  Modified:             ChangeLog splashutils-1.5.4.3-r2.ebuild
  Log:
  Do not enable fadeout if it's not explicitly requested, make sure all signals are processed before exiting (bug #296152).
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.173                media-gfx/splashutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.173&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.173&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?r1=1.172&r2=1.173

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog	9 Mar 2010 22:11:10 -0000	1.172
+++ ChangeLog	4 Apr 2010 15:20:23 -0000	1.173
@@ -1,6 +1,13 @@
 # ChangeLog for media-gfx/splashutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.172 2010/03/09 22:11:10 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.173 2010/04/04 15:20:23 spock Exp $
+
+  04 Apr 2010; Michał Januszewski <spock@gentoo.org>
+  splashutils-1.5.4.3-r2.ebuild,
+  +files/splashutils-1.5.4.3-daemon-exit-signal.patch,
+  +files/splashutils-1.5.4.3-openrc-effects.patch:
+  Do not enable fadeout if it's not explicitly requested, make sure all
+  signals are processed before exiting (bug #296152).
 
   09 Mar 2010; Joseph Jezak <josejx@gentoo.org>
   splashutils-1.5.4.3-r2.ebuild:



1.5                  media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?r1=1.4&r2=1.5

Index: splashutils-1.5.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- splashutils-1.5.4.3-r2.ebuild	9 Mar 2010 22:11:10 -0000	1.4
+++ splashutils-1.5.4.3-r2.ebuild	4 Apr 2010 15:20:23 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.4 2010/03/09 22:11:10 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.5 2010/04/04 15:20:23 spock Exp $
 
 EAPI="2"
 
@@ -86,6 +86,7 @@
 	epatch "${FILESDIR}"/splashutils-1.5.4.3-makefile.patch
 	epatch "${FILESDIR}"/splashutils-1.5.4.3-splash_geninitramfs.patch
 	epatch "${FILESDIR}"/splashutils-1.5.4.3-libjpeg.patch
+	epatch "${FILESDIR}"/splashutils-1.5.4.3-daemon-exit-signal.patch
 
 	cd "${SG}"
 	if has_version ">=sys-apps/openrc-0.4.0"; then
@@ -97,6 +98,7 @@
 	epatch "${FILESDIR}"/splashutils-1.5.4.3-fix_rc_var.patch
 	epatch "${FILESDIR}"/splashutils-1.5.4.3-openrc-umount-fix.patch
 	epatch "${FILESDIR}"/splashutils-1.5.4.3-nondefault-runlevel.patch
+	epatch "${FILESDIR}"/splashutils-1.5.4.3-openrc-effects.patch
 	cd "${S}"
 
 	rm -f m4/*






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: ChangeLog splashutils-1.5.4.3-r2.ebuild
@ 2010-06-21 15:17 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-06-21 15:17 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/06/21 15:17:37

  Modified:             ChangeLog splashutils-1.5.4.3-r2.ebuild
  Log:
  Restrict media-libs/lcms depend to old version.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.174                media-gfx/splashutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/ChangeLog?r1=1.173&r2=1.174

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	4 Apr 2010 15:20:23 -0000	1.173
+++ ChangeLog	21 Jun 2010 15:17:37 -0000	1.174
@@ -1,6 +1,10 @@
 # ChangeLog for media-gfx/splashutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.173 2010/04/04 15:20:23 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.174 2010/06/21 15:17:37 ssuominen Exp $
+
+  21 Jun 2010; Samuli Suominen <ssuominen@gentoo.org>
+  splashutils-1.5.4.3-r2.ebuild:
+  Restrict media-libs/lcms depend to old version.
 
   04 Apr 2010; Michał Januszewski <spock@gentoo.org>
   splashutils-1.5.4.3-r2.ebuild,



1.6                  media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild?r1=1.5&r2=1.6

Index: splashutils-1.5.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- splashutils-1.5.4.3-r2.ebuild	4 Apr 2010 15:20:23 -0000	1.5
+++ splashutils-1.5.4.3-r2.ebuild	21 Jun 2010 15:17:37 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.5 2010/04/04 15:20:23 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.3-r2.ebuild,v 1.6 2010/06/21 15:17:37 ssuominen Exp $
 
 EAPI="2"
 
@@ -37,7 +37,10 @@
 RDEPEND="gpm? ( sys-libs/gpm )
 	truetype? ( >=media-libs/freetype-2 )
 	png? ( >=media-libs/libpng-1.2.7 )
-	mng? ( media-libs/lcms media-libs/libmng )
+	mng? (
+		=media-libs/lcms-1*
+		media-libs/libmng
+		)
 	>=media-libs/jpeg-6b:0
 	>=sys-apps/baselayout-1.9.4-r5
 	app-arch/cpio






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: ChangeLog splashutils-1.5.4.3-r2.ebuild
@ 2010-08-28 20:39 Michael Januszewski (spock)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Januszewski (spock) @ 2010-08-28 20:39 UTC (permalink / raw
  To: gentoo-commits

spock       10/08/28 20:39:15

  Modified:             ChangeLog
  Removed:              splashutils-1.5.4.3-r2.ebuild
  Log:
  Remove old ebuild.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.180                media-gfx/splashutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.180&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.180&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/splashutils/ChangeLog?r1=1.179&r2=1.180

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -r1.179 -r1.180
--- ChangeLog	28 Aug 2010 20:37:37 -0000	1.179
+++ ChangeLog	28 Aug 2010 20:39:15 -0000	1.180
@@ -1,6 +1,10 @@
 # ChangeLog for media-gfx/splashutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.179 2010/08/28 20:37:37 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.180 2010/08/28 20:39:15 spock Exp $
+
+  28 Aug 2010; Michał Januszewski <spock@gentoo.org>
+  -splashutils-1.5.4.3-r2.ebuild:
+  Remove old ebuild.
 
   28 Aug 2010; Michał Januszewski <spock@gentoo.org>
   splashutils-1.5.4.3-r3.ebuild:






^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-08-28 20:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-04  7:59 [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: ChangeLog splashutils-1.5.4.3-r2.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2010-08-28 20:39 Michael Januszewski (spock)
2010-06-21 15:17 Samuli Suominen (ssuominen)
2010-04-04 15:20 Michael Januszewski (spock)
2010-03-09 22:11 Joseph Jezak (josejx)
2010-03-07 15:38 Markus Meier (maekke)
2010-03-03 20:06 Michael Januszewski (spock)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox