From patchwork Mon May 13 19:07:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 243496 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id E90452C00AA for ; Tue, 14 May 2013 05:07:39 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 9D92CA01E0; Mon, 13 May 2013 19:07:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uBTcelHKyWL8; Mon, 13 May 2013 19:07:31 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 0654CA00B0; Mon, 13 May 2013 19:07:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 924E98F79A for ; Mon, 13 May 2013 19:07:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2C9E18C024 for ; Mon, 13 May 2013 19:07:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZcDz2xYEYTR7 for ; Mon, 13 May 2013 19:07:28 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 809CE8A94E for ; Mon, 13 May 2013 19:07:28 +0000 (UTC) Received: from asgard (host147.190-138-228.telecom.net.ar [190.138.228.147]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r4DJ7LIw006715 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 13 May 2013 19:07:23 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1368472045; bh=PYPXuyxw4SKBnPIEqHDt4++jrwxLmeb6Lz1ZNH8LYu4=; h=From:To:Cc:Subject:Date; b=sZ7ft90+AahaCjJGowWXYNkjidXnADatKXVuXMr+MYw2TNT4QcpN3HwpFnc0Ifqkq dTulKfFwzrNbz34Vc7MElnlITJnKRHNZcvLhfchoiaF+FhM1e51Z5NKWDOX07m0mdo dHFXKh7kjqFPXJOIfo+5X/6FyEmjdLk3YEI50/0A= Received: by asgard (sSMTP sendmail emulation); Mon, 13 May 2013 16:07:20 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 13 May 2013 16:07:19 -0300 Message-Id: <1368472039-5128-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] xapp_xinit: revert removal X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Even though xinit isn't included in the X11R7.7 release it is very useful for debugging and quick tests. Reinstante it without xdm requiring it though. Signed-off-by: Gustavo Zacarias --- package/x11r7/Config.in | 1 + package/x11r7/xapp_xinit/Config.in | 10 ++++++++++ package/x11r7/xapp_xinit/xapp_xinit.mk | 12 ++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 package/x11r7/xapp_xinit/Config.in create mode 100644 package/x11r7/xapp_xinit/xapp_xinit.mk diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in index f7487da..205079c 100644 --- a/package/x11r7/Config.in +++ b/package/x11r7/Config.in @@ -103,6 +103,7 @@ if BR2_PACKAGE_XORG7 source package/x11r7/xapp_xgamma/Config.in source package/x11r7/xapp_xgc/Config.in source package/x11r7/xapp_xhost/Config.in + source package/x11r7/xapp_xinit/Config.in source package/x11r7/xapp_xinput/Config.in source package/x11r7/xapp_xinput-calibrator/Config.in source package/x11r7/xapp_xkbcomp/Config.in diff --git a/package/x11r7/xapp_xinit/Config.in b/package/x11r7/xapp_xinit/Config.in new file mode 100644 index 0000000..aede5d9 --- /dev/null +++ b/package/x11r7/xapp_xinit/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_XAPP_XINIT + bool "xinit" + # Runtime dependency: can't start an X server unless there is one + depends on BR2_PACKAGE_XSERVER_XORG_SERVER + # Runtime dependency; mcookie is also in util-linux + select BR2_PACKAGE_MCOOKIE if !BR2_PACKAGE_UTIL_LINUX + select BR2_PACKAGE_XAPP_XAUTH + select BR2_PACKAGE_XLIB_LIBX11 + help + X Window System initializer diff --git a/package/x11r7/xapp_xinit/xapp_xinit.mk b/package/x11r7/xapp_xinit/xapp_xinit.mk new file mode 100644 index 0000000..fc9218d --- /dev/null +++ b/package/x11r7/xapp_xinit/xapp_xinit.mk @@ -0,0 +1,12 @@ +################################################################################ +# +# xapp_xinit -- X Window System initializer +# +################################################################################ + +XAPP_XINIT_VERSION = 1.3.2 +XAPP_XINIT_SOURCE = xinit-$(XAPP_XINIT_VERSION).tar.bz2 +XAPP_XINIT_SITE = http://xorg.freedesktop.org/releases/individual/app +XAPP_XINIT_DEPENDENCIES = xapp_xauth xlib_libX11 + +$(eval $(autotools-package))