Some people still need to have a X deported (export DISPLAY=192.168.0.50:0.0). Entrance ebuild apply a patch that change a header and cause entrance to always start X with -nolisten tcp. So I just add a USE flag for that epatch. Reproducible: Always Steps to Reproduce: 1. 2. 3.
Here is the patch : ^^ ROOT ^^ /usr/local/portage/perso/x11-misc/entrance :( # diff -Nu /usr/portage/x11-misc/entrance/entrance-9999.ebuild /usr/local/portage/perso/x11-misc/entrance/entrance-9999-r2.ebuild --- /usr/portage/x11-misc/entrance/entrance-9999.ebuild 2005-02-12 05:18:50.000000000 +0100 +++ /usr/local/portage/perso/x11-misc/entrance/entrance-9999-r2.ebuild 2005-03-11 00:12:46.000000000 +0100 @@ -11,7 +11,7 @@ http://wh0rd.de/gentoo/distfiles/extraicons-1.tar.bz2" # http://www.atmos.org/files/gentooed-src.tar.gz" -IUSE="pam" +IUSE="pam nolistentcp" DEPEND="virtual/x11 pam? ( sys-libs/pam ) @@ -35,7 +35,10 @@ sed -i 's:\(data/themes/default/Makefile\):\1 data/themes/gentooed/Makefile:' ${S}/configure.in fi cd ${S} - epatch ${FILESDIR}/no-listen-tcp.patch + + if use nolistentcp; then + epatch ${FILESDIR}/no-listen-tcp.patch + fi } src_compile() {
Created attachment 53103 [details, diff] Patch between officiel CVS ebuild and mine
*** This bug has been marked as a duplicate of 83697 ***