2003-01-18 22:27:22 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# tinyx - a small footprint X-server for the TuxScreen
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
# Copyright (C) 2002 by Tom Walsh <Tom@OpenHardware.net>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Library General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
# USA
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
# You may want to change these.
|
|
|
|
#############################################################
|
|
|
|
|
|
|
|
TINYX_APPS:=xlsfonts/xlsfonts xmodmap/xmodmap
|
|
|
|
#xset/xset xdpyinfo/xdpyinfo xsetroot/xsetroot \
|
|
|
|
# xrdb/xrdb xrandr/xrandr \
|
|
|
|
# xhost/xhost xauth/xauth oclock/oclock xeyes/xeyes
|
|
|
|
#
|
|
|
|
|
|
|
|
TINYX_LIBS:=ICE X11 Xext Xpm
|
|
|
|
# Xaw SM Xt Xmu
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
# Stuff below this line shouldn't need changes.
|
|
|
|
# if you do change, look in rxvt & matchbox for the impact!
|
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Where resources are found.
|
|
|
|
#
|
|
|
|
TINYX_DIR:=$(BUILD_DIR)/xc-011010
|
|
|
|
TINYX_LDIR:=$(TINYX_DIR)/lib
|
|
|
|
TINYX_PROGS:=$(TINYX_DIR)/programs
|
|
|
|
TINYX_SOURCE:=xc-011010.tar.bz2
|
|
|
|
TINYX_SITE:= http://intimate.handhelds.org/jacques/
|
|
|
|
TINYX_CF:=$(TINYX_DIR)/config/cf
|
|
|
|
#
|
|
|
|
# Some things that you may want to change.
|
|
|
|
TINYX_XFBDEV:=$(TINYX_DIR)/programs/Xserver/Xfbdev
|
|
|
|
TINYX_CAT:=bzcat
|
|
|
|
TINYX_BINX:=$(TARGET_DIR)/usr/X11R6/bin/
|
|
|
|
TINYX_LIBX:=$(TARGET_DIR)/usr/lib/
|
|
|
|
|
|
|
|
#
|
|
|
|
# These rules fetch various tinyx source files.
|
|
|
|
#
|
|
|
|
$(DL_DIR)/$(TINYX_SOURCE):
|
|
|
|
$(WGET) -P $(DL_DIR) $(TINYX_SITE)/$(TINYX_SOURCE)
|
|
|
|
|
|
|
|
$(DL_DIR)/cross.def:
|
2004-06-29 00:28:51 +02:00
|
|
|
$(WGET) -P $(DL_DIR) $(TINYX_SITE)/xcompile/tuxscreen/cross.def
|
2004-07-16 13:25:07 +02:00
|
|
|
$(SED) 's:arm-uclibc-:$(ARCH)-linux-uclibc-:g' $(DL_DIR)/cross.def
|
2003-01-18 22:27:22 +01:00
|
|
|
|
|
|
|
$(DL_DIR)/host.def:
|
2004-06-29 00:28:51 +02:00
|
|
|
$(WGET) -P $(DL_DIR) $(TINYX_SITE)/xcompile/tuxscreen/host.def
|
2003-01-18 22:27:22 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# rule to make sure that we have the source, and it is configured.
|
|
|
|
#
|
|
|
|
$(TINYX_DIR)/.configure: $(DL_DIR)/$(TINYX_SOURCE) $(DL_DIR)/cross.def $(DL_DIR)/host.def
|
2004-10-09 23:19:47 +02:00
|
|
|
$(TINYX_CAT) $(DL_DIR)/$(TINYX_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
2004-10-09 04:49:33 +02:00
|
|
|
toolchain/patch-kernel.sh $(TINYX_DIR) package/tinyx/ tinyx*.patch
|
2003-01-18 22:27:22 +01:00
|
|
|
cp $(DL_DIR)/host.def $(TINYX_CF)/host.def
|
|
|
|
cp $(DL_DIR)/cross.def $(TINYX_CF)/cross.def
|
2004-06-29 00:28:51 +02:00
|
|
|
$(SED) 's,arm-uclibc-,$(ARCH)-linux-uclibc-,g' $(TINYX_CF)/cross.def
|
2003-11-19 18:17:56 +01:00
|
|
|
$(SED) 's:REPLACE_STAGING_DIR:$(STAGING_DIR):g' \
|
2003-01-18 22:27:22 +01:00
|
|
|
$(TINYX_CF)/cross.def \
|
|
|
|
$(TINYX_LDIR)/X11/Xlib.h
|
|
|
|
touch $(TINYX_DIR)/.configure
|
|
|
|
|
|
|
|
#
|
|
|
|
# Now that we have the source, build it...
|
|
|
|
#
|
|
|
|
$(TINYX_XFBDEV): $(TINYX_DIR)/.configure
|
|
|
|
rm -f $(TINYX_BINX)/Xfbdev
|
|
|
|
( cd $(TINYX_DIR) ; $(MAKE) World ; cd $(BUILDROOT) )
|
|
|
|
|
|
|
|
#
|
|
|
|
# Once Frame Buffer is built, we install executables.
|
|
|
|
#
|
|
|
|
$(TINYX_BINX)/Xfbdev: $(TINYX_XFBDEV)
|
|
|
|
-mkdir $(TARGET_DIR)/usr/X11R6
|
|
|
|
-mkdir $(TINYX_BINX)
|
|
|
|
for file in $(TINYX_APPS) ; do \
|
|
|
|
cp -f $(TINYX_DIR)/programs/$$file $(TINYX_BINX) ; \
|
|
|
|
$(STRIP) $(TINYX_PROGS)/$$file ; \
|
|
|
|
done
|
|
|
|
cp $(TINYX_DIR)/programs/Xserver/Xfbdev $(TINYX_BINX)
|
|
|
|
$(STRIP) $(TINYX_BINX)/Xfbdev
|
|
|
|
cp -f $(TINYX_DIR)/startx $(TARGET_DIR)/bin
|
|
|
|
chmod a+x $(TARGET_DIR)/bin/startx
|
|
|
|
|
|
|
|
#
|
|
|
|
# After we have executables installed, install the libraries.
|
|
|
|
#
|
|
|
|
$(TINYX_LIBX)/libX11.so.6.2: $(TINYX_XFBDEV)
|
|
|
|
for dirs in $(TINYX_LIBS) ; do \
|
|
|
|
file=`find $(TINYX_LDIR)/$$dirs -type f -iname "lib$$dirs.so*"` ; \
|
|
|
|
$(STRIP) --strip-unneeded $$file ; \
|
|
|
|
cp -f $$file $(TINYX_LIBX) ; \
|
|
|
|
file=`find $(TINYX_LDIR)/$$dirs -type l -iname "lib$$dirs.so*"` ; \
|
|
|
|
cp -pRf $$file $(TINYX_LIBX) ; \
|
|
|
|
done
|
|
|
|
|
|
|
|
tinyx: zlib $(TINYX_LIBX)/libX11.so.6.2 $(TINYX_BINX)/Xfbdev
|
|
|
|
|
2003-11-12 10:31:12 +01:00
|
|
|
tinyx-source: $(DL_DIR)/$(TINYX_SOURCE)
|
|
|
|
|
2003-01-18 22:27:22 +01:00
|
|
|
tinyx-clean:
|
|
|
|
-rm -rf $(TARGET_DIR)/usr/X11R6
|
|
|
|
-$(MAKE) -C $(TINYX_DIR) clean
|
|
|
|
|
|
|
|
tinyx-dirclean:
|
|
|
|
-rm -rf $(TINYX_DIR)
|
|
|
|
-rm -rf $(TARGET_DIR)/usr/X11R6
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_TINYX)),y)
|
|
|
|
TARGETS+=tinyx
|
|
|
|
endif
|