12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- # 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
- PKG_DESCR:= Xorg server
- PKG_SECTION:= x11
- PKG_DEPENDS:= libopenssl
- PKG_URL:= http://www.x.org
- PKG_SITES:= ${MASTER_SITE_XORG}
- include $(TOPDIR)/mk/package.mk
- $(eval $(call PKG_template,XORG_SERVER,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- CONFIGURE_STYLE= gnu
- CONFIGURE_ARGS+= \
- --enable-builtin-fonts \
- --enable-dga \
- --enable-xorg \
- --enable-xv \
- --disable-afb \
- --disable-aiglx \
- --disable-cfb \
- --disable-config-hal \
- --disable-cup \
- --disable-evi \
- --disable-dpms \
- --disable-dri \
- --disable-dri2 \
- --disable-freetype \
- --disable-glx \
- --disable-kdrive-vesa \
- --disable-mfb \
- --disable-xace \
- --disable-xephyr \
- --disable-xevie \
- --disable-xf86bigfont \
- --disable-xf86misc \
- --disable-xf86vidmode \
- --disable-xfake \
- --disable-xfbdev \
- --disable-xinerama \
- --disable-xnest \
- --disable-xprint \
- --disable-xsdl \
- --disable-xselinux \
- --disable-xcsecurity \
- --disable-xvfb \
- --disable-xvmc \
- --with-xkb-output=/tmp \
- --with-os-vendor=OpenADK \
- --with-vendor-web="http://www.openadk.org"
- 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
|