Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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:= xterm
  5. PKG_VERSION:= 259
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 22037e1b794d749072310cb142800f05
  8. PKG_DESCR:= Terminal Emulator for X Windows
  9. PKG_SECTION:= x11/apps
  10. PKG_DEPENDS:= xorg-server libxaw
  11. PKG_URL:= http://invisible-island.net/xterm/xterm.html
  12. PKG_SITES:= ftp://invisible-island.net/xterm/
  13. PKG_TARGET_DEPENDS:= !foxboard !foxg20 !ag241
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tgz
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,XTERM,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. post-install:
  18. $(INSTALL_DIR) $(IDIR_XTERM)/usr/bin
  19. $(INSTALL_BIN) $(WRKINST)/usr/bin/{koi8rxterm,resize,uxterm,xterm} \
  20. $(IDIR_XTERM)/usr/bin/
  21. $(INSTALL_DIR) $(IDIR_XTERM)/usr/lib/X11/app-defaults
  22. $(INSTALL_DATA) ${WRKINST}/usr/lib/X11/app-defaults/{KOI8RXTerm,KOI8RXTerm-color,UXTerm,UXTerm-color,XTerm,XTerm-color} \
  23. ${IDIR_XTERM}/usr/lib/X11/app-defaults/
  24. include ${TOPDIR}/mk/pkg-bottom.mk