# HG changeset patch # User John W. Eaton # Date 1507227869 14400 # Node ID 7bf3a5b0f0fac2ac60bc25848bcc94faff5fc59d # Parent 788dc298ec004b0f38e06c73f4f19f8ec6ff5b6a xcursor: New module. diff -r 788dc298ec00 -r 7bf3a5b0f0fa dist-files.mk --- a/dist-files.mk Thu Oct 05 14:23:20 2017 -0400 +++ b/dist-files.mk Thu Oct 05 14:24:29 2017 -0400 @@ -705,6 +705,7 @@ xau.mk \ xcb-proto.mk \ xcb.mk \ + xcursor.mk \ xdamage.mk \ xdmcp.mk \ xerces-1-fix-pkgconfig.patch \ diff -r 788dc298ec00 -r 7bf3a5b0f0fa index.html --- a/index.html Thu Oct 05 14:23:20 2017 -0400 +++ b/index.html Thu Oct 05 14:24:29 2017 -0400 @@ -2458,6 +2458,10 @@ xcb + xcursor + xcursor + + xcb-proto xcb-proto diff -r 788dc298ec00 -r 7bf3a5b0f0fa src/x11.mk --- a/src/x11.mk Thu Oct 05 14:23:20 2017 -0400 +++ b/src/x11.mk Thu Oct 05 14:24:29 2017 -0400 @@ -8,7 +8,7 @@ $(PKG)_SUBDIR := libX11-$($(PKG)_VERSION) $(PKG)_FILE := libX11-$($(PKG)_VERSION).tar.gz $(PKG)_URL := http://xorg.freedesktop.org/archive/individual/lib/$($(PKG)_FILE) -$(PKG)_DEPS := inputproto kbproto xcb xextproto xproto xtrans +$(PKG)_DEPS := inputproto kbproto xcb xcursor xextproto xproto xtrans ifeq ($(MXE_WINDOWS_BUILD),yes) define $(PKG)_BUILD diff -r 788dc298ec00 -r 7bf3a5b0f0fa src/xcursor.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/xcursor.mk Thu Oct 05 14:24:29 2017 -0400 @@ -0,0 +1,27 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := xcursor +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.1.14 +$(PKG)_CHECKSUM := 89870756758439f9216ddf5f2d3dca56570fc6b7 +$(PKG)_SUBDIR := libXcursor-$($(PKG)_VERSION) +$(PKG)_FILE := libXcursor-$($(PKG)_VERSION).tar.bz2 +$(PKG)_URL := http://xorg.freedesktop.org/archive/individual/lib/$($(PKG)_FILE) +$(PKG)_DEPS := + +ifeq ($(MXE_WINDOWS_BUILD),yes) + define $(PKG)_BUILD + endef +else + define $(PKG)_BUILD + mkdir '$(1)/.build' + cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \ + $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \ + $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ + --prefix='$(HOST_PREFIX)' \ + && $(CONFIGURE_POST_HOOK) + + $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)' + endef +endif