diff options
author | Joshua Baergen <joshuabaergen@gentoo.org> | 2006-06-11 22:06:50 +0000 |
---|---|---|
committer | Joshua Baergen <joshuabaergen@gentoo.org> | 2006-06-11 22:06:50 +0000 |
commit | 3c93b5e4b2880f445e2f25b28dd0712f1e7c9ef9 (patch) | |
tree | 56a59a0f6b39d5dc97b62ba5f2ffbed6bc8d9070 /x11-apps | |
parent | Fixing deps wrt bug #136437 (diff) | |
download | gentoo-2-3c93b5e4b2880f445e2f25b28dd0712f1e7c9ef9.tar.gz gentoo-2-3c93b5e4b2880f445e2f25b28dd0712f1e7c9ef9.tar.bz2 gentoo-2-3c93b5e4b2880f445e2f25b28dd0712f1e7c9ef9.zip |
Revision bump to make sure the xinitrc changes get distributed.
(Portage version: 2.1)
Diffstat (limited to 'x11-apps')
-rw-r--r-- | x11-apps/xinit/ChangeLog | 8 | ||||
-rw-r--r-- | x11-apps/xinit/files/digest-xinit-1.0.2-r5 | 3 | ||||
-rw-r--r-- | x11-apps/xinit/xinit-1.0.2-r5.ebuild | 44 |
3 files changed, 54 insertions, 1 deletions
diff --git a/x11-apps/xinit/ChangeLog b/x11-apps/xinit/ChangeLog index 5be4c5595cb6..f9c2059e0342 100644 --- a/x11-apps/xinit/ChangeLog +++ b/x11-apps/xinit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-apps/xinit # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v 1.52 2006/06/11 17:40:05 joshuabaergen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/ChangeLog,v 1.53 2006/06/11 22:06:50 joshuabaergen Exp $ + +*xinit-1.0.2-r5 (11 Jun 2006) + + 11 Jun 2006; Joshua Baergen <joshuabaergen@gentoo.org> + -xinit-1.0.2-r4.ebuild, +xinit-1.0.2-r5.ebuild: + Revision bump to make sure the xinitrc changes get distributed. 11 Jun 2006; Joshua Baergen <joshuabaergen@gentoo.org> files/xinitrc: Fix executable test in xinitrc. (truc, bug #136316) diff --git a/x11-apps/xinit/files/digest-xinit-1.0.2-r5 b/x11-apps/xinit/files/digest-xinit-1.0.2-r5 new file mode 100644 index 000000000000..29ec40dd3a6d --- /dev/null +++ b/x11-apps/xinit/files/digest-xinit-1.0.2-r5 @@ -0,0 +1,3 @@ +MD5 d591fafe69b57969b0521c461073a01f xinit-1.0.2.tar.bz2 96536 +RMD160 b3ced92e7ffb1afc3880799ed18f584e7f58d048 xinit-1.0.2.tar.bz2 96536 +SHA256 254ee0f81384fb184229d73d546fb07344c5448bbd4f4a66fef595ae49f8f395 xinit-1.0.2.tar.bz2 96536 diff --git a/x11-apps/xinit/xinit-1.0.2-r5.ebuild b/x11-apps/xinit/xinit-1.0.2-r5.ebuild new file mode 100644 index 000000000000..6fafc59614e4 --- /dev/null +++ b/x11-apps/xinit/xinit-1.0.2-r5.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/xinit-1.0.2-r5.ebuild,v 1.1 2006/06/11 22:06:50 joshuabaergen Exp $ + +# Must be before x-modular eclass is inherited +# This is enabled due to modified Makefile.am from the patches +SNAPSHOT="yes" + +inherit x-modular pam + +DESCRIPTION="X.Org xinit application" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +RDEPEND="x11-libs/libX11 + x11-wm/twm + x11-apps/xclock + x11-apps/xrdb" +DEPEND="${RDEPEND}" +PDEPEND="x11-terms/xterm" +LICENSE="${LICENSE} GPL-2" + +PATCHES="${FILESDIR}/nolisten-tcp-and-black-background.patch + ${FILESDIR}/gentoo-startx-customization-0.99.4.patch" + +src_unpack() { + x-modular_unpack_source + x-modular_patch_source + + sed -i -e "s:^XINITDIR.*:XINITDIR = \$(sysconfdir)/X11/xinit:g" ${S}/Makefile.am + + x-modular_reconf_source +} + +src_install() { + x-modular_src_install + exeinto /etc/X11 + doexe ${FILESDIR}/chooser.sh ${FILESDIR}/startDM.sh + exeinto /etc/X11/Sessions + doexe ${FILESDIR}/Xsession + exeinto /etc/X11/xinit + doexe ${FILESDIR}/xinitrc + newinitd ${FILESDIR}/xdm.start xdm + newconfd ${FILESDIR}/xdm.confd xdm + newpamd ${FILESDIR}/xserver.pamd xserver +} |