Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # $OpenBSD: Makefile,v 1.25 2013/05/14 09:52:43 sthen Exp $
  2. VERSION= 2010-07-27
  3. PKGNAME= xemacs-sumo-21.${VERSION:S/-//g}
  4. REVISION= 0
  5. DISTFILES= xemacs-sumo-${VERSION}.tar.gz
  6. SUP_mule= xemacs-mule-sumo-${VERSION}.tar.gz
  7. SUPDISTFILES= ${SUP_mule}
  8. CATEGORIES= editors
  9. HOMEPAGE= http://www.xemacs.org/
  10. COMMENT= complete set of supported XEmacs packages
  11. # GNU GPL
  12. PERMIT_PACKAGE_CDROM= Yes
  13. MASTER_SITES= http://ftp.xemacs.org/pub/xemacs/packages/ \
  14. ftp://ftp.oleane.net/pub/xemacs/packages/ \
  15. ftp://ftp.pasteur.fr/pub/computing/xemacs/packages/ \
  16. ftp://ftp.lab.kdd.co.jp/xemacs/packages/
  17. SEPARATE_BUILD= Yes
  18. RUN_DEPENDS= editors/xemacs21/stable
  19. BUILD_DEPENDS= ${RUN_DEPENDS}
  20. MULE= mule
  21. SUBST_VARS= MULE
  22. FLAVORS=mule
  23. FLAVOR?=
  24. .if ${FLAVOR:Mmule}
  25. DISTFILES+= ${SUP_mule}
  26. .endif
  27. EXTRACT_ONLY=
  28. NO_BUILD= Yes
  29. NO_TEST= Yes
  30. do-install:
  31. ${INSTALL_DATA_DIR} ${PREFIX}/lib/xemacs
  32. .for archive in ${DISTFILES}
  33. /usr/bin/gunzip -c ${FULLDISTDIR}/${archive} \
  34. | ${TAR} -C ${PREFIX}/lib/xemacs -xf -
  35. .endfor
  36. .include <bsd.port.mk>