| 123456789101112131415161718192021222324252627282930 |
- # $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:= libX11
- PKG_VERSION:= 1.1.5
- PKG_RELEASE:= 1
- PKG_MD5SUM:= 2feb39a0de6f05b25c308268691d960c
- MASTER_SITES:= ${MASTER_SITE_XORG}
- include $(TOPDIR)/mk/package.mk
- $(eval $(call PKG_template,LIBX11,libx11,$(PKG_VERSION)-$(PKG_RELEASE)))
- CONFIGURE_STYLE= gnu
- CONFIGURE_ARGS+= --enable-xlocale \
- --disable-xf86bigfont \
- --disable-malloc0returnsnull \
- --without-xcb
- BUILD_STYLE= auto
- INSTALL_STYLE= auto confprog
- post-install:
- ${INSTALL_DIR} ${IDIR_LIBX11}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libX11.so* ${IDIR_LIBX11}/usr/lib/
- include ${TOPDIR}/mk/pkg-bottom.mk
|