Index: head/lang/bf2c/files/patch-Makefile =================================================================== --- head/lang/bf2c/files/patch-Makefile (revision 408861) +++ head/lang/bf2c/files/patch-Makefile (revision 408862) @@ -1,31 +1,23 @@ -commit 186730742519bfa9cb7f9668fb508a78e65d26cc -Author: René Ladan -Date: Fri Feb 21 12:20:57 2014 +0100 - - Add DESTDIR support and add install-strip and uninstall targets. - -diff --git a/Makefile b/Makefile -index d527b55..2ddbb8b 100644 ---- a/Makefile -+++ b/Makefile +--- Makefile.orig 2013-06-12 22:11:38 UTC ++++ Makefile @@ -1,4 +1,6 @@ -.PHONY: all clean install +.PHONY: all clean install install-strip uninstall + +INSTALL_PROGRAM?=install all: bf2c gen_bf @@ -17,4 +19,11 @@ clean: rm bf2c gen_bf $(obj) install: - install bf2c gen_bf $(PREFIX)/bin + mkdir -p $(DESTDIR)$(PREFIX)/bin + $(INSTALL_PROGRAM) bf2c gen_bf $(DESTDIR)$(PREFIX)/bin + +install-strip: + $(MAKE) INSTALL_PROGRAM='install -s' install + +uninstall: + rm -rf $(DESTDIR)$(PREFIX)/bin Index: head/lang/bf2c/pkg-descr =================================================================== --- head/lang/bf2c/pkg-descr (revision 408861) +++ head/lang/bf2c/pkg-descr (revision 408862) @@ -1,8 +1,8 @@ BrainF*ck is a minimalistic, yet Turing-complete programming language with only 8 instructions. bf2c compiles a BF file into a corresponding C file, optimizing as much as possible for speed, size and readability. It is written for fun, self-educating purposes and to beat existing BF compilers. -WWW: http://rene-ladan.nl/bf2c/ +WWW: https://rene-ladan.nl/bf2c/ Index: head/misc/biosfont-demos/pkg-descr =================================================================== --- head/misc/biosfont-demos/pkg-descr (revision 408861) +++ head/misc/biosfont-demos/pkg-descr (revision 408862) @@ -1,5 +1,5 @@ Two samples for the biosfont(4) kernel module: * showchar shows a requested character on stdout * showdati is a digital clock. Best viewed on 80x25 consoles. -WWW: http://rene-ladan.nl/biosfont/ +WWW: https://rene-ladan.nl/biosfont/ Index: head/sysutils/biosfont/pkg-descr =================================================================== --- head/sysutils/biosfont/pkg-descr (revision 408861) +++ head/sysutils/biosfont/pkg-descr (revision 408862) @@ -1,4 +1,4 @@ This port provides a FreeBSD kernel module that can be used to retrieve the font bitmaps stored in BIOS memory. -WWW: http://rene-ladan.nl/biosfont/ +WWW: https://rene-ladan.nl/biosfont/