summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2010-04-13 11:57:19 +0200
committerTomas Chvatal <scarabeus@gentoo.org>2010-04-13 11:57:19 +0200
commit33b69330ff0d11e53458a13078aaf3a59ab7aa1b (patch)
tree0acc1fdbd1f1101556eae3a210a6545aeb8879d4 /x11-apps/xinit
parent[x11-base/xorg-drivers] 1.8 moved to main tree. (diff)
downloadx11-33b69330ff0d11e53458a13078aaf3a59ab7aa1b.tar.gz
x11-33b69330ff0d11e53458a13078aaf3a59ab7aa1b.tar.bz2
x11-33b69330ff0d11e53458a13078aaf3a59ab7aa1b.zip
[x11-apps/xinit] 1.8 moved to main tree.
Diffstat (limited to 'x11-apps/xinit')
-rw-r--r--x11-apps/xinit/Manifest2
-rw-r--r--x11-apps/xinit/xinit-1.2.1-r2.ebuild62
2 files changed, 0 insertions, 64 deletions
diff --git a/x11-apps/xinit/Manifest b/x11-apps/xinit/Manifest
index 2bb5b2ed..574d0ca9 100644
--- a/x11-apps/xinit/Manifest
+++ b/x11-apps/xinit/Manifest
@@ -5,6 +5,4 @@ AUX chooser.sh 1301 RMD160 47ae0768ed54f235443399bdf08632c9f5cd3d10 SHA1 c378244
AUX startDM.sh 858 RMD160 d7ef866ddd09e3d4117b3363aaa6382a9b8cd153 SHA1 1b826dfb4d5a184d6d7cc1995d685b55c9c188ac SHA256 a7aca1e37e5b8fecb49aa96c4e2850547a47e154edabcdbd1cfcb8ab49337549
AUX xserver.pamd 125 RMD160 4b75f8bf5e68ac7181a22beaccc153ac250eb8e9 SHA1 e35845021328044659036b9f82a95c17f21beb25 SHA256 f179c3417b94295fe12776f9da4a08898a3ee4199e26abff6457717caeb29bb2
AUX xserverrc 30 RMD160 7575b72f2f5ec4afba3e3700c213a7fbe40a0f8d SHA1 febf89ebfcc056c16bf70a4e651f4074af71b224 SHA256 18c040add4d137aaa58f76b134088acb1269dd291a14bcc283765c6c897d49fe
-DIST xinit-1.2.1.tar.bz2 141441 RMD160 993b068e4758521ed930bd78069c291b68d88037 SHA1 baf36374aa1632054816a8281e55e1539459664b SHA256 16bcc73ae81b6d80fd1a9419ea757f38870d1043d440b6d56fcaa79d4c6c9b07
-EBUILD xinit-1.2.1-r2.ebuild 1650 RMD160 ce2edd4300768c3d31207b0835c9296b461644bb SHA1 844a90f25e60772e2d51fbfbcc2e381044dfdd05 SHA256 261247fb9ab75954b199d3757ab7a70dfd70ca514264849c8da0f0596a8f754d
EBUILD xinit-9999.ebuild 1657 RMD160 2636bfe2fb13245a942cac00591655bf26a5782f SHA1 72b742e05488ae048d5444cafc59cc312f111346 SHA256 4ddaaca5553e7f3f4b55c6b32402b65ae3edd95de286a89667d4add0b740d289
diff --git a/x11-apps/xinit/xinit-1.2.1-r2.ebuild b/x11-apps/xinit/xinit-1.2.1-r2.ebuild
deleted file mode 100644
index ad910384..00000000
--- a/x11-apps/xinit/xinit-1.2.1-r2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-inherit x-modular pam
-
-DESCRIPTION="X Window System initializer"
-
-LICENSE="${LICENSE} GPL-2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="+minimal pam"
-
-RDEPEND="
- x11-apps/xauth
- >=x11-base/xorg-server-1.8.0-r1
- x11-libs/libX11
-"
-DEPEND="${RDEPEND}"
-PDEPEND="x11-apps/xrdb
- !minimal? (
- x11-apps/xclock
- x11-apps/xsm
- x11-terms/xterm
- x11-wm/twm
- )
-"
-
-PATCHES=(
- "${FILESDIR}/0001-Gentoo-specific-customizations.patch"
-)
-
-pkg_setup() {
- CONFIGURE_OPTIONS="--with-xinitdir=/etc/X11/xinit"
-}
-
-src_install() {
- x-modular_src_install
-
- exeinto /etc/X11
- doexe "${FILESDIR}"/chooser.sh "${FILESDIR}"/startDM.sh || die
- exeinto /etc/X11/Sessions
- doexe "${FILESDIR}"/Xsession || die
- exeinto /etc/X11/xinit
- doexe "${FILESDIR}"/xserverrc || die
- newpamd "${FILESDIR}"/xserver.pamd xserver
- exeinto /etc/X11/xinit/xinitrc.d/
- doexe "${FILESDIR}/00-xhost"
-}
-
-pkg_postinst() {
- x-modular_pkg_postinst
- ewarn "If you use startx to start X instead of a login manager like gdm/kdm,"
- ewarn "you can set the XSESSION variable to anything in /etc/X11/Sessions/ or"
- ewarn "any executable. When you run startx, it will run this as the login session."
- ewarn "You can set this in a file in /etc/env.d/ for the entire system,"
- ewarn "or set it per-user in ~/.bash_profile (or similar for other shells)."
- ewarn "Here's an example of setting it for the whole system:"
- ewarn " echo XSESSION=\"Gnome\" > /etc/env.d/90xsession"
- ewarn " env-update && source /etc/profile"
-}