2005-11-20 07:54:05 -05:00
|
|
|
# $OpenBSD: Makefile,v 1.13 2005/11/20 12:58:52 wilfried Exp $
|
2001-04-02 11:11:46 -04:00
|
|
|
|
|
|
|
COMMENT= 'Text Editor for FLTK'
|
|
|
|
|
2002-09-17 11:17:41 -04:00
|
|
|
V= 0.4.5
|
2002-08-10 16:04:16 -04:00
|
|
|
DISTNAME= fl_editor-${V}
|
2005-11-20 07:54:05 -05:00
|
|
|
PKGNAME= fleditor-${V}p0
|
2001-04-02 11:11:46 -04:00
|
|
|
CATEGORIES= x11
|
|
|
|
|
|
|
|
HOMEPAGE= http://www.robertk.com/source/
|
|
|
|
|
|
|
|
MAINTAINER= Peter Stromberg <wilfried@openbsd.org>
|
|
|
|
|
2002-05-15 05:30:21 -04:00
|
|
|
# LPGL
|
2001-04-02 11:11:46 -04:00
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
|
2001-08-29 03:44:47 -04:00
|
|
|
MASTER_SITES= http://www.robertk.com/source/fl_editor/
|
2001-04-02 11:11:46 -04:00
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
|
2005-11-20 07:54:05 -05:00
|
|
|
LIB_DEPENDS= ::x11/fltk
|
2001-04-02 11:11:46 -04:00
|
|
|
|
|
|
|
USE_X11= Yes
|
2001-10-25 18:34:48 -04:00
|
|
|
REGRESS_TARGET= test
|
2001-04-02 11:11:46 -04:00
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
CONFIGURE_ENV= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
|
2001-04-15 06:32:06 -04:00
|
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
|
|
|
--with-fltk=${LOCALBASE}
|
2001-04-02 11:11:46 -04:00
|
|
|
|
2001-08-29 03:44:47 -04:00
|
|
|
WRKDIST= ${WRKDIR}/fl_editor
|
|
|
|
|
2001-10-25 18:34:48 -04:00
|
|
|
# This regression test wants an X11 display
|
|
|
|
REGRESS_FLAGS+= DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY}
|
|
|
|
REGRESS_IS_INTERACTIVE= Yes
|
|
|
|
|
2001-04-02 11:11:46 -04:00
|
|
|
post-patch:
|
|
|
|
@rmdir ${WRKSRC}/obj
|
|
|
|
|
2002-08-10 16:04:16 -04:00
|
|
|
pre-regress:
|
|
|
|
.for t in DISPLAY XAUTHORITY
|
|
|
|
.if !defined($t)
|
|
|
|
@echo "$t needs to be set to run regress"; exit 1
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
2001-04-02 11:11:46 -04:00
|
|
|
do-install:
|
2001-09-07 12:35:51 -04:00
|
|
|
@${install_shared_frag}
|
2001-04-02 11:11:46 -04:00
|
|
|
${INSTALL_DATA} ${WRKBUILD}/libfleditor.a ${PREFIX}/lib
|
|
|
|
${INSTALL_DATA_DIR} ${PREFIX}/include/FL
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/FL/*.[Hh] ${PREFIX}/include/FL
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|
2001-09-07 12:18:28 -04:00
|
|
|
|
|
|
|
.if defined(NO_SHARED_LIBS) && ${NO_SHARED_LIBS:L} == "yes"
|
2001-09-07 12:35:51 -04:00
|
|
|
install_shared_frag= :
|
2001-09-07 12:18:28 -04:00
|
|
|
.else
|
2001-09-07 12:35:51 -04:00
|
|
|
install_shared_frag=\
|
2001-09-07 12:18:28 -04:00
|
|
|
${INSTALL_DATA} ${WRKBUILD}/libfleditor.so* ${PREFIX}/lib
|
|
|
|
.endif
|