Index: head/comms/aldo/Makefile =================================================================== --- head/comms/aldo/Makefile (revision 465406) +++ head/comms/aldo/Makefile (revision 465407) @@ -1,24 +1,23 @@ # Created by: lambert@lambertfam.org # $FreeBSD$ PORTNAME= aldo -PORTVERSION= 0.7.5 -PORTREVISION= 6 +DISTVERSION= 0.7.7 CATEGORIES= comms hamradio MASTER_SITES= SAVANNAH MAINTAINER= lambert@lambertfam.org COMMENT= Morse code training program +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libao.so:audio/libao +USES= compiler:c++0x gmake localbase tar:bzip2 GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -USES= gmake libtool tar:bzip2 -USE_GCC= any PLIST_FILES= bin/aldo \ man/man1/aldo.1.gz .include Index: head/comms/aldo/distinfo =================================================================== --- head/comms/aldo/distinfo (revision 465406) +++ head/comms/aldo/distinfo (revision 465407) @@ -1,2 +1,3 @@ -SHA256 (aldo-0.7.5.tar.bz2) = 15f9dbcab48c6ba3fba6a4d3e9a030bad3255d4a4b47677388a1e46782aa84ea -SIZE (aldo-0.7.5.tar.bz2) = 98612 +TIMESTAMP = 1521837318 +SHA256 (aldo-0.7.7.tar.bz2) = f1b8849d09267fff3c1f5122097d90fec261291f51b1e075f37fad8f1b7d9f92 +SIZE (aldo-0.7.7.tar.bz2) = 112000 Index: head/comms/aldo/files/patch-src_audioworkspace.cc =================================================================== --- head/comms/aldo/files/patch-src_audioworkspace.cc (revision 465406) +++ head/comms/aldo/files/patch-src_audioworkspace.cc (nonexistent) @@ -1,20 +0,0 @@ ---- src/audioworkspace.cc.orig 2007-11-05 08:58:46 UTC -+++ src/audioworkspace.cc -@@ -31,7 +31,8 @@ - #include - #include - #include -- -+#include -+ - using namespace std; - using namespace libaudiostream; - -@@ -104,6 +105,7 @@ oastream AudioWorkSpace::create_output_s - { - ao_sample_format format; - -+ memset(&format, 0, sizeof(format)); - format.bits = m_bits; - format.channels = m_channels; - format.rate = m_sample_rate; Property changes on: head/comms/aldo/files/patch-src_audioworkspace.cc ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -1 \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/comms/aldo/files/patch-configure =================================================================== --- head/comms/aldo/files/patch-configure (revision 465406) +++ head/comms/aldo/files/patch-configure (revision 465407) @@ -1,12 +1,12 @@ ---- configure.orig 2007-11-05 09:22:11 UTC +--- configure.orig 2012-03-31 11:55:36 UTC +++ configure -@@ -2220,9 +2220,6 @@ am__tar='${AMTAR} chof - "$$tardir"'; am +@@ -2725,9 +2725,6 @@ am__tar='$${TAR-tar} chof - "$$tardir"' -CPPFLAGS="-I${includedir}" -LDFLAGS="-L${libdir}" -LIBS="-L${libdir} ${LIBS}" # Checks for programs. ac_ext=cpp Index: head/comms/aldo/files/patch-include_Makefile.in =================================================================== --- head/comms/aldo/files/patch-include_Makefile.in (revision 465406) +++ head/comms/aldo/files/patch-include_Makefile.in (revision 465407) @@ -1,11 +1,11 @@ ---- include/Makefile.in.orig 2017-03-24 13:33:28 UTC +--- include/Makefile.in.orig 2012-03-31 11:55:36 UTC +++ include/Makefile.in -@@ -101,7 +101,7 @@ PATH_SEPARATOR = @PATH_SEPARATOR@ +@@ -105,7 +105,7 @@ PATH_SEPARATOR = @PATH_SEPARATOR@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ -VERSION = @VERSION@ +VERSION = "@VERSION@" abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ Index: head/comms/aldo/files/patch-src_menu.cc =================================================================== --- head/comms/aldo/files/patch-src_menu.cc (nonexistent) +++ head/comms/aldo/files/patch-src_menu.cc (revision 465407) @@ -0,0 +1,25 @@ +--- src/menu.cc.orig 2012-03-31 11:32:34 UTC ++++ src/menu.cc +@@ -112,19 +112,19 @@ void Menu::add_item(id_type id, std::str + + void Menu::add_item_at(unsigned int pos, id_type id, std::string c, Function1 f) + { +- IT it(&m_its[pos]); ++ IT it(m_its.begin() + pos); + m_its.insert(it, Item(id,c,f) ); + } + + void Menu::add_item_at(unsigned int pos, id_type id, std::string c, Function2 f) + { +- IT it(&m_its[pos]); ++ IT it(m_its.begin() + pos); + m_its.insert(it, Item(id,c,f) ); + } + + void Menu::delete_item_at(unsigned int pos) + { +- IT it(&m_its[pos]); ++ IT it(m_its.begin() + pos); + m_its.erase(it); + } + Property changes on: head/comms/aldo/files/patch-src_menu.cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property