Date: Fri, 23 Mar 2018 20:46:26 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465407 - in head/comms/aldo: . files Message-ID: <201803232046.w2NKkQ2K032830@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Mar 23 20:46:26 2018 New Revision: 465407 URL: https://svnweb.freebsd.org/changeset/ports/465407 Log: comms/aldo: Update 0.7.5 -> 0.7.7 Port changes: * Change to DISTVERSION * Add LICENSE/LICENSE_FILE * Remove USE_GCC * Add USES=localbase instead of CPPFLAGS/LIBS PR: 226349 Submitted by: Dmitri Goutnik <dg@syrec.org> Approved by: lambert@lambertfam.org (maintainer timeout; 19 days) Added: head/comms/aldo/files/patch-src_menu.cc (contents, props changed) Deleted: head/comms/aldo/files/patch-src_audioworkspace.cc Modified: head/comms/aldo/Makefile head/comms/aldo/distinfo head/comms/aldo/files/patch-configure head/comms/aldo/files/patch-include_Makefile.in Modified: head/comms/aldo/Makefile ============================================================================== --- head/comms/aldo/Makefile Fri Mar 23 20:35:25 2018 (r465406) +++ head/comms/aldo/Makefile Fri Mar 23 20:46:26 2018 (r465407) @@ -2,21 +2,20 @@ # $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 Modified: head/comms/aldo/distinfo ============================================================================== --- head/comms/aldo/distinfo Fri Mar 23 20:35:25 2018 (r465406) +++ head/comms/aldo/distinfo Fri Mar 23 20:46:26 2018 (r465407) @@ -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 Modified: head/comms/aldo/files/patch-configure ============================================================================== --- head/comms/aldo/files/patch-configure Fri Mar 23 20:35:25 2018 (r465406) +++ head/comms/aldo/files/patch-configure Fri Mar 23 20:46:26 2018 (r465407) @@ -1,6 +1,6 @@ ---- 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"' Modified: head/comms/aldo/files/patch-include_Makefile.in ============================================================================== --- head/comms/aldo/files/patch-include_Makefile.in Fri Mar 23 20:35:25 2018 (r465406) +++ head/comms/aldo/files/patch-include_Makefile.in Fri Mar 23 20:46:26 2018 (r465407) @@ -1,6 +1,6 @@ ---- 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@ Added: head/comms/aldo/files/patch-src_menu.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/aldo/files/patch-src_menu.cc Fri Mar 23 20:46:26 2018 (r465407) @@ -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); + } +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803232046.w2NKkQ2K032830>