Makefile 828 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # $OpenBSD: Makefile,v 1.42 2015/06/18 06:05:20 bentley Exp $
  2. COMMENT= text editor
  3. DISTNAME= jed-0.99-19
  4. PKGNAME= jed-0.99.19
  5. REVISION= 1
  6. CATEGORIES= editors
  7. MASTER_SITES= http://www.jedsoft.org/releases/jed/ \
  8. ftp://space.mit.edu/pub/davis/jed/v0.99/ \
  9. ftp://ftp.ntua.gr/pub/lang/slang/jed/v0.99/ \
  10. ftp://ftp.fu-berlin.de/pub/unix/editors/jed/v0.99/
  11. HOMEPAGE= http://www.jedsoft.org/jed/
  12. # GPLv2+
  13. PERMIT_PACKAGE_CDROM= Yes
  14. WANTLIB += c m slang>=15 termcap util
  15. LIB_DEPENDS= devel/libslang
  16. CONFIGURE_STYLE= gnu
  17. CONFIGURE_ARGS= --with-slang=${LOCALBASE}
  18. CONFIGURE_ENV+= JED_ROOT="${PREFIX}/lib/jed"
  19. MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/autoconf
  20. FLAVORS= no_x11
  21. FLAVOR?=
  22. .if ${FLAVOR} == "no_x11"
  23. ALL_TARGET= all getmail
  24. .else
  25. ALL_TARGET= all getmail xjed
  26. WANTLIB+= X11
  27. .endif
  28. NO_TEST= Yes
  29. .include <bsd.port.mk>