Source: cdebconf-entropy Version: 0.13 Severity: wishlist Tags: d-i patch Hi,
please find attached the patch to switch from DirectFB to X11. See http://lists.debian.org/debian-boot/2010/03/msg00313.html for the details. Thanks for considering. Mraw, KiBi.
Index: debian/control =================================================================== --- debian/control (révision 62665) +++ debian/control (copie de travail) @@ -3,7 +3,7 @@ Section: debian-installer Maintainer: Debian Install System Team <debian-b...@lists.debian.org> Uploaders: Max Vozeler <x...@debian.org>, Jérémy Bobbio <lu...@debian.org>, Christian Perrier <bubu...@debian.org>, Colin Watson <cjwat...@debian.org> -Build-Depends: debhelper (>= 7.0.50~), po-debconf (>= 0.5.0), libdebian-installer4-dev, libnewt-dev, libtextwrap-dev, libdebconfclient0-dev (>= 0.130), libgtk-directfb-2.0-dev +Build-Depends: debhelper (>= 7.0.50~), po-debconf (>= 0.5.0), libdebian-installer4-dev, libnewt-dev, libtextwrap-dev, libdebconfclient0-dev (>= 0.130), libgtk2.0-dev (>= 2.18.7-2) Vcs-Svn: svn://svn.debian.org/d-i/trunk/packages/cdebconf-entropy Package: cdebconf-text-entropy Index: debian/changelog =================================================================== --- debian/changelog (révision 62665) +++ debian/changelog (copie de travail) @@ -1,3 +1,15 @@ +cdebconf-entropy (0.14) UNRELEASED; urgency=low + + * Switch udeb from DirectFB to Xlib to prepare the move to an X11-based + graphical installer: + - Get rid of libgtk-directfb-2.0-dev in Build-Depends. + - Bump the Build-Depends on libgtk2.0-dev to ensure the new udeb gets + a dependency on libgtk-x11-udeb. + - Replace gtk+-directfb-2.0 with gtk+-x11-2.0 in configure.ac to use + the shared/x11 flavour (which is the one used for the udeb). + + -- Cyril Brulebois <k...@debian.org> Wed, 17 Mar 2010 00:27:42 +0100 + cdebconf-entropy (0.13) unstable; urgency=low [ Colin Watson ] Index: configure.ac =================================================================== --- configure.ac (révision 62665) +++ configure.ac (copie de travail) @@ -18,7 +18,7 @@ AC_CHECK_LIB(newt, newtInit, FRONTENDS="$FRONTENDS newt", echo "*** Cannot build Newt plugin ***") -PKG_CHECK_MODULES(GTK, [gtk+-directfb-2.0], +PKG_CHECK_MODULES(GTK, [gtk+-x11-2.0], FRONTENDS="$FRONTENDS gtk", echo "*** Cannot build GTK+ plugin ***")