The referenced change made NO_INSTALLLIB, NO_MAN, and NO_PROFILE into errors causing these ports that declare them and use the FreeBSD make infrastructure as part of their build to fail. When the offending variables occur in a BSD Makefile, NO_MAN becomes MAN= and NO_INSTALLLIB and NO_PROFILE become MK_INSTALLLIB=no and MK_PROFILE=no respectively. When declared in the environment they become WITHOUT_<FOO>.
19 lines
558 B
Makefile
19 lines
558 B
Makefile
PROG= xfpovray
|
|
MAN=
|
|
NO_WERROR= yes
|
|
BINDIR= ${PREFIX}/bin
|
|
CFLAGS+=-Iflx -I${LOCALBASE}/include -DHELP_DIR='"${DOCSDIR}"'
|
|
LDADD+= -L${LOCALBASE}/lib -lforms -lX11
|
|
|
|
.PATH: src flx/flx_filebox flx/flx_help_dialog flx/flx_return_button \
|
|
flx/flx_show_dialog flx/flx_util
|
|
|
|
WARNS= 3
|
|
|
|
SRCS= flx_filebox.c flx_help_dialog.c flx_justify_input.c \
|
|
flx_return_button.c flx_scale_form.c flx_show_dialog.c \
|
|
flx_show_input.c flx_sort_browser.c \
|
|
build_pages.c callbacks.c config.c run_program.c \
|
|
show_image.c state.c tips.c util.c xfpovray.c
|
|
|
|
.include <bsd.prog.mk>
|