diff options
Diffstat (limited to 'package/xorg-server')
-rw-r--r-- | package/xorg-server/Config.in | 8 | ||||
-rw-r--r-- | package/xorg-server/Makefile | 51 | ||||
-rw-r--r-- | package/xorg-server/ipkg/xorg-server.control | 4 |
3 files changed, 63 insertions, 0 deletions
diff --git a/package/xorg-server/Config.in b/package/xorg-server/Config.in new file mode 100644 index 000000000..f9cc2a6a8 --- /dev/null +++ b/package/xorg-server/Config.in @@ -0,0 +1,8 @@ +config ADK_PACKAGE_XORG_SERVER + prompt "xorg-server............................... X server" + tristate + default n + select ADK_PACKAGE_LIBXKBFILE + select ADK_PACKAGE_LIBX11 + help + http://www.x.org diff --git a/package/xorg-server/Makefile b/package/xorg-server/Makefile new file mode 100644 index 000000000..6a56e652e --- /dev/null +++ b/package/xorg-server/Makefile @@ -0,0 +1,51 @@ +# $Id$ +#- +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= xorg-server +PKG_VERSION:= 1.5.1 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 7aca5d0dc8b824d3dff6140e381e03df +MASTER_SITES:= ${MASTER_SITE_XORG} + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,XORG_SERVER,xorg-server,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +CONFIGURE_STYLE= gnu +CONFIGURE_ARGS+= --disable-xinerama \ + --disable-aiglx \ + --disable-dga \ + --disable-dri \ + --disable-glx \ + --disable-xnest \ + --disable-config-hal \ + --disable-xvfb \ + --disable-mfb \ + --disable-cfb \ + --disable-afb \ + --disable-xephyr \ + --disable-xsdl \ + --enable-builtin-fonts +BUILD_STYLE= auto +INSTALL_STYLE= auto + +post-install: + $(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/bin + $(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/{extensions,fonts,linux,multimedia} + ${CP} ${WRKINST}/usr/bin/* $(IDIR_XORG_SERVER)/usr/bin + ${CP} ${WRKINST}/usr/lib/xorg/modules/*.so \ + $(IDIR_XORG_SERVER)/usr/lib/xorg/modules + ${CP} ${WRKINST}/usr/lib/xorg/modules/extensions/*.so \ + $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/extensions + ${CP} ${WRKINST}/usr/lib/xorg/modules/fonts/*.so \ + $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/fonts + ${CP} ${WRKINST}/usr/lib/xorg/modules/linux/*.so \ + $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/linux + ${CP} ${WRKINST}/usr/lib/xorg/modules/multimedia/*.so \ + $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/multimedia + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/xorg-server/ipkg/xorg-server.control b/package/xorg-server/ipkg/xorg-server.control new file mode 100644 index 000000000..103035148 --- /dev/null +++ b/package/xorg-server/ipkg/xorg-server.control @@ -0,0 +1,4 @@ +Package: xorg-server +Priority: optional +Section: x11 +Description: X.org server |