public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/tuxonice-userui: tuxonice-userui-1.1-r1.ebuild ChangeLog tuxonice-userui-1.1.ebuild
@ 2012-10-28  8:28 Pacho Ramos (pacho)
  0 siblings, 0 replies; only message in thread
From: Pacho Ramos (pacho) @ 2012-10-28  8:28 UTC (permalink / raw
  To: gentoo-commits

pacho       12/10/28 08:28:49

  Modified:             ChangeLog
  Added:                tuxonice-userui-1.1-r1.ebuild
  Removed:              tuxonice-userui-1.1.ebuild
  Log:
  Compile fbsplash support properly and add migration information for people upgrading from 1.0, bug #439120 by Sergey Fionov.
  
  (Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.26                 sys-apps/tuxonice-userui/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tuxonice-userui/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tuxonice-userui/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tuxonice-userui/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/tuxonice-userui/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	20 Oct 2012 08:17:47 -0000	1.25
+++ ChangeLog	28 Oct 2012 08:28:49 -0000	1.26
@@ -1,6 +1,13 @@
 # ChangeLog for sys-apps/tuxonice-userui
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/tuxonice-userui/ChangeLog,v 1.25 2012/10/20 08:17:47 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/tuxonice-userui/ChangeLog,v 1.26 2012/10/28 08:28:49 pacho Exp $
+
+*tuxonice-userui-1.1-r1 (28 Oct 2012)
+
+  28 Oct 2012; Pacho Ramos <pacho@gentoo.org> +tuxonice-userui-1.1-r1.ebuild,
+  -tuxonice-userui-1.1.ebuild:
+  Compile fbsplash support properly and add migration information for people
+  upgrading from 1.0, bug #439120 by Sergey Fionov.
 
 *tuxonice-userui-1.1 (20 Oct 2012)
 



1.1                  sys-apps/tuxonice-userui/tuxonice-userui-1.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tuxonice-userui/tuxonice-userui-1.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/tuxonice-userui/tuxonice-userui-1.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: tuxonice-userui-1.1-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/tuxonice-userui/tuxonice-userui-1.1-r1.ebuild,v 1.1 2012/10/28 08:28:49 pacho Exp $

EAPI=4
inherit toolchain-funcs eutils

DESCRIPTION="User Interface for TuxOnIce"
HOMEPAGE="http://www.tuxonice.net"
SRC_URI="http://tuxonice.net/files/${P}.tar.gz -> ${P}.tar
	mirror://debian/pool/main/t/${PN}/${PN}_${PV}-2~exp1.debian.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE="fbsplash"
DEPEND="fbsplash? ( >=media-gfx/splashutils-1.5.2.1
	media-libs/libmng[lcms]
	>=media-libs/libpng-1.4.8[static-libs]
	media-libs/freetype[static-libs]
	|| ( <app-arch/bzip2-1.0.6-r3[static] >=app-arch/bzip2-1.0.6-r3[static-libs] )
	media-libs/lcms:0[static-libs] )"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${PN}"

src_prepare() {
	local d=${WORKDIR}/debian/patches
	EPATCH_SOURCE=${d} epatch $(<"${d}"/series)
	sed -i -e 's/make/$(MAKE)/' Makefile || die
}

src_compile() {
	# Package contain binaries
	emake clean

	emake CC="$(tc-getCC)" USE_FBSPLASH=$(use fbsplash && echo 1 || echo 0) \
		tuxoniceui || die "emake tuxoniceui failed"
}

src_install() {
	into /
	dosbin tuxoniceui
	dodoc AUTHORS ChangeLog KERNEL_API README TODO USERUI_API
}

pkg_postinst() {
	if use fbsplash; then
		einfo
		elog "You must create a symlink from /etc/splash/tuxonice"
		elog "to the theme you want tuxonice to use, e.g.:"
		elog
		elog "  # ln -sfn /etc/splash/emergence /etc/splash/tuxonice"
		if [[ ${REPLACING_VERSIONS} < 1.1 ]]; then
			einfo
			elog "You must replace '/sbin/tuxoniceui_fbsplash' with '/sbin/tuxoniceui -f'"
			elog "in kernel config."
		fi
	fi
	einfo
	einfo "Please see /usr/share/doc/${PF}/README.* for further"
	einfo "instructions."
	einfo
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-10-28  8:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-28  8:28 [gentoo-commits] gentoo-x86 commit in sys-apps/tuxonice-userui: tuxonice-userui-1.1-r1.ebuild ChangeLog tuxonice-userui-1.1.ebuild Pacho Ramos (pacho)

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