diff options
author | pav <pav@FreeBSD.org> | 2004-03-30 05:29:34 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-03-30 05:29:34 +0800 |
commit | a6a44dd06705e6eb893e2639f0128cf5f175b0d3 (patch) | |
tree | d777664724bd6bb937803c5485d419cd3b1d292b /comms/aldo/files | |
parent | b671a6736efbc69aab5c7b192213f5d734da473d (diff) | |
download | freebsd-ports-gnome-a6a44dd06705e6eb893e2639f0128cf5f175b0d3.tar.gz freebsd-ports-gnome-a6a44dd06705e6eb893e2639f0128cf5f175b0d3.tar.zst freebsd-ports-gnome-a6a44dd06705e6eb893e2639f0128cf5f175b0d3.zip |
Add aldo, a Morse code tutor. At the moment it has four kinds of
exercises: Classic exercise, the Koch method, Callsign exercise, and
exercises read from files.
PR: ports/64358
Submitted by: Scott Lambert <lambert@lambertfam.org>
Diffstat (limited to 'comms/aldo/files')
-rw-r--r-- | comms/aldo/files/patch-Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/comms/aldo/files/patch-Makefile b/comms/aldo/files/patch-Makefile new file mode 100644 index 000000000000..06ec482e7138 --- /dev/null +++ b/comms/aldo/files/patch-Makefile @@ -0,0 +1,21 @@ +--- Makefile.old Tue Mar 16 21:13:21 2004 ++++ Makefile Tue Mar 16 21:14:20 2004 +@@ -3,6 +3,8 @@ + includedir = $(CURDIR)/include + CXXFLAGS+= -I$(includedir) + ++PREFIX ?= /usr ++ + export MARCH CXXFLAGS + + VPATH = src $(SUBDIRS) +@@ -65,7 +67,7 @@ + + install: libs aldo uninstall + @strip aldo +- @install -m555 -oroot aldo /usr/bin/ ++ @install -m555 -oroot aldo $(PREFIX)/bin/ + + uninstall: +- @$(RM) /usr/bin/aldo ++ @$(RM) $(PREFIX)/bin/aldo |