From its beginning, Florist required a gcc 3.x series Ada compiler to build, and this compiler hasn't been building for most platforms for quite some time. With the recent import of lang/gcc-aux which accepts USE_LANGUAGES+= ada, it's possible to build Florist again. 1) Update to Adacore-maintained version, GPL 2012 2) Update the license (GPLv3) The time elapsed between versions is approximately 12 years, but no Changelog exists to show what has been updated.
17 lines
606 B
Text
17 lines
606 B
Text
$NetBSD: patch-Makefile.in,v 1.1 2012/07/09 05:52:14 marino Exp $
|
|
|
|
--- Makefile.in.orig 2012-05-10 13:32:06.000000000 +0000
|
|
+++ Makefile.in
|
|
@@ -187,8 +187,9 @@ distclean:
|
|
|
|
# install floristlib
|
|
install:
|
|
- mkdir -p $(PREFIX)/lib/gnat
|
|
- cp -pr floristlib $(PREFIX)/floristlib
|
|
- cp -p florist.gpr $(PREFIX)/lib/gnat
|
|
+ mkdir -p $(DESTDIR)$(PREFIX)/lib/gnat $(DESTDIR)$(PREFIX)/lib/florist
|
|
+ cp -pr floristlib/* $(DESTDIR)$(PREFIX)/lib/florist
|
|
+ mv $(DESTDIR)$(PREFIX)/lib/florist/libflorist.a $(DESTDIR)$(PREFIX)/lib/
|
|
+ cp -p florist.gpr $(DESTDIR)$(PREFIX)/lib/gnat
|
|
|
|
.PHONY: install clean distclean regen
|