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