Makefile 1002 B

12345678910111213141516171819202122232425262728293031
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= xinit
  5. PKG_VERSION:= 1.2.1
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 7ad82221ebd6600a8d33712ec3b62efb
  8. PKG_DESCR:= X Window System initializer
  9. PKG_SECTION:= x11/apps
  10. PKG_DEPENDS:= xorg-server mcookie xauth xset
  11. PKG_BUILDDEP:= xorg-server
  12. PKG_URL:= http://xorg.freedesktop.org/
  13. PKG_SITES:= http://xorg.freedesktop.org/archive/individual/app/
  14. PKG_TARGET_DEPENDS:= !foxboard
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,XINIT,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. post-install:
  18. $(INSTALL_DIR) $(IDIR_XINIT)/usr/bin
  19. $(INSTALL_BIN) $(WRKINST)/usr/bin/{xinit,startx} \
  20. $(IDIR_XINIT)/usr/bin/
  21. ${INSTALL_DIR} ${IDIR_XINIT}/usr/lib/X11/xinit
  22. ${INSTALL_DATA} ${WRKINST}/usr/lib/X11/xinit/xinitrc \
  23. ${IDIR_XINIT}/usr/lib/X11/xinit/
  24. include ${TOPDIR}/mk/pkg-bottom.mk