[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-tools/files/, media-radio/ax25-tools/

2024-08-07 Thread Thomas Beierlein
commit: 622281fdd1f3515961385eca574d886e4c8d4647
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Wed Aug  7 12:42:51 2024 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Wed Aug  7 12:44:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=622281fd

media-radio/ax25-tools: fix incompatible pointer types

* update HOMEPAGE, SRC_URI

Closes: https://bugs.gentoo.org/937393
Signed-off-by: Thomas Beierlein  gentoo.org>

 .../ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild | 14 ++---
 .../ax25-tools-0.0.10-fix-pointer-types.patch  | 35 ++
 2 files changed, 45 insertions(+), 4 deletions(-)

diff --git a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild 
b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild
index 17ee50418cad..aee863ad2462 100644
--- a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild
+++ b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild
@@ -6,9 +6,14 @@ EAPI="8"
 MY_P=${P/_/-}
 
 DESCRIPTION="Basic AX.25 (Amateur Radio) administrative tools and daemons"
-HOMEPAGE="http://www.linux-ax25.org/";
-SRC_URI="http://www.linux-ax25.org/pub/${PN}/${MY_P}.tar.gz";
-
+HOMEPAGE="
+   https://linux-ax25.in-berlin.de/
+   https://packet-radio.net/ax-25/
+" # NOTE: ...in-berlin.de does not work but subdomains do
+SRC_URI="
+   https://linux-ax25.in-berlin.de/pub/${PN}/${MY_P}.tar.gz
+   https://ham.packet-radio.net/packet/ax25/ax25-apps/${MY_P}.tar.gz
+"
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
@@ -30,10 +35,11 @@ RDEPEND="${DEPEND}
sys-libs/zlib"
 
 src_prepare() {
-   eapply_user
if use elibc_musl ; then
eapply -p1 "${FILESDIR}/${PN}-0.0.10-musl.patch"
fi
+   eapply -p1 "${FILESDIR}/${PN}-0.0.10-fix-pointer-types.patch"
+   eapply_user
 }
 
 src_configure() {

diff --git 
a/media-radio/ax25-tools/files/ax25-tools-0.0.10-fix-pointer-types.patch 
b/media-radio/ax25-tools/files/ax25-tools-0.0.10-fix-pointer-types.patch
new file mode 100644
index ..ca74a4970e08
--- /dev/null
+++ b/media-radio/ax25-tools/files/ax25-tools-0.0.10-fix-pointer-types.patch
@@ -0,0 +1,35 @@
+diff --git a/tcpip/rip98d.c b/tcpip/rip98d.c
+index 50df60e..70b92f1 100644
+--- a/tcpip/rip98d.c
 b/tcpip/rip98d.c
+@@ -243,7 +243,7 @@ int main(int argc, char **argv)
+   loc_addr.sin_addr.s_addr = htonl(INADDR_ANY);
+   loc_addr.sin_port= htons(RIP_PORT);
+ 
+-  if (bind(s, &loc_addr, sizeof(loc_addr)) < 0) {
++  if (bind(s, (struct sockaddr *)&loc_addr, sizeof(loc_addr)) < 0) {
+   perror("rip98d: bind");
+   close(s);
+   return 1;
+diff --git a/tcpip/ttylinkd.c b/tcpip/ttylinkd.c
+index c530d73..10f568e 100644
+--- a/tcpip/ttylinkd.c
 b/tcpip/ttylinkd.c
+@@ -43,7 +43,7 @@
+ 
+ #include 
+ #include 
+-#include 
++#include 
+ #include 
+ #include 
+ 
+@@ -308,7 +308,7 @@ int main(int argc, char *argv[])
+   exit(1);
+   }
+ 
+-  if (bind(ctl_skt, &ctl_sin, sizeof(ctl_sin)) != 0)
++  if (bind(ctl_skt, (struct sockaddr *)&ctl_sin, sizeof(ctl_sin)) != 0)
+   {
+   syslog(LOG_DAEMON | LOG_CRIT, "main(): Error when trying to 
bind() control socket.");
+   close(skt);



[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-tools/, media-radio/ax25-tools/files/

2024-08-05 Thread Thomas Beierlein
commit: b99276cbb0638f7e33f11f112e57de5927a031d1
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Mon Aug  5 07:16:25 2024 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Mon Aug  5 07:20:55 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b99276cb

media-radio/ax25-tools: provide missing header file for MUSL

* Header file is a copy from glibc
* update EAPI 7 -> 8

Closes: https://bugs.gentoo.org/716888
Signed-off-by: Thomas Beierlein  gentoo.org>

 .../ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild |  53 +++
 .../ax25-tools/files/ax25-tools-0.0.10-musl.patch  | 155 +
 2 files changed, 208 insertions(+)

diff --git a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild 
b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild
new file mode 100644
index ..17ee50418cad
--- /dev/null
+++ b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5-r1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+MY_P=${P/_/-}
+
+DESCRIPTION="Basic AX.25 (Amateur Radio) administrative tools and daemons"
+HOMEPAGE="http://www.linux-ax25.org/";
+SRC_URI="http://www.linux-ax25.org/pub/${PN}/${MY_P}.tar.gz";
+
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="X"
+
+DOCS=(  AUTHORS ChangeLog NEWS README tcpip/ttylinkd.README \
+   user_call/README.user_call yamdrv/README.yamdrv 
dmascc/README.dmascc \
+   tcpip/ttylinkd.INSTALL )
+
+DEPEND="
+   dev-libs/libax25
+   X? (
+   x11-libs/libX11
+   media-libs/mesa[X(+)]
+   )"
+RDEPEND="${DEPEND}
+   sys-libs/zlib"
+
+src_prepare() {
+   eapply_user
+   if use elibc_musl ; then
+   eapply -p1 "${FILESDIR}/${PN}-0.0.10-musl.patch"
+   fi
+}
+
+src_configure() {
+   econf $(use_with X x)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install installconf
+   einstalldocs
+
+   newinitd "${FILESDIR}"/ax25d.rc ax25d
+   newinitd "${FILESDIR}"/mheardd.rc mheardd
+   newinitd "${FILESDIR}"/netromd.rc netromd
+   newinitd "${FILESDIR}"/rip98d.rc rip98d
+   newinitd "${FILESDIR}"/rxecho.rc rxecho
+   newinitd "${FILESDIR}"/ttylinkd.rc ttylinkd
+}

diff --git a/media-radio/ax25-tools/files/ax25-tools-0.0.10-musl.patch 
b/media-radio/ax25-tools/files/ax25-tools-0.0.10-musl.patch
new file mode 100644
index ..f2b240bb34a2
--- /dev/null
+++ b/media-radio/ax25-tools/files/ax25-tools-0.0.10-musl.patch
@@ -0,0 +1,155 @@
+# Provide missing header file
+# From https://github.com/void-linux
+diff --color --new-file -Np1 tcpip/talkd.h tcpip_a/talkd.h
+*** a/tcpip/talkd.h1970-01-01 01:00:00.0 +0100
+--- b/tcpip/talkd.h2021-09-01 23:25:25.059430912 +0200
+***
+*** 0 
+--- 1,127 
++ 
++ /*
++  * Copyright (c) 1983, 1993
++  *   The Regents of the University of California.  All rights reserved.
++  *
++  * Redistribution and use in source and binary forms, with or without
++  * modification, are permitted provided that the following conditions
++  * are met:
++  * 1. Redistributions of source code must retain the above copyright
++  *notice, this list of conditions and the following disclaimer.
++  * 2. Redistributions in binary form must reproduce the above copyright
++  *notice, this list of conditions and the following disclaimer in the
++  *documentation and/or other materials provided with the distribution.
++  * 4. Neither the name of the University nor the names of its contributors
++  *may be used to endorse or promote products derived from this software
++  *without specific prior written permission.
++  *
++  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
++  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
++  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
++  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
++  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
++  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
++  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
++  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
++  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
++  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
++  * SUCH DAMAGE.
++  *
++  *   @(#)talkd.h 8.1 (Berkeley) 6/2/93
++  */
++ 
++ #ifndef _PROTOCOLS_TALKD_H
++ #define  _PROTOCOLS_TALKD_H 1
++ 
++ /*
++  * This describes the protocol used by the talk server and clients.
++  *
++  * The talk server acts a repository of invitations, responding to
++  * requests by clients wishing to rendezvous for the purpose of
++  * holding a conversation.  In normal operation, a client, t

[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-tools/

2020-05-29 Thread Thomas Beierlein
commit: 0a85dbdb599d25f75b594b914cbacb711a645e4f
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Sat May 30 04:30:34 2020 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Sat May 30 04:38:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a85dbdb

media-radio/ax25-tools: Drop old

Closes: https://bugs.gentoo.org/713050
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Thomas Beierlein  gentoo.org>

 media-radio/ax25-tools/Manifest|  1 -
 .../ax25-tools/ax25-tools-0.0.10_rc4.ebuild| 44 --
 2 files changed, 45 deletions(-)

diff --git a/media-radio/ax25-tools/Manifest b/media-radio/ax25-tools/Manifest
index c59a4f079ba..b9053bd0cc9 100644
--- a/media-radio/ax25-tools/Manifest
+++ b/media-radio/ax25-tools/Manifest
@@ -1,2 +1 @@
-DIST ax25-tools-0.0.10-rc4.tar.gz 364332 BLAKE2B 
36ea9c72ff69a7a66927e78fb6733c64114a719d80cfb4732ccc0b54951b105a18e674e35d3c59806489f9679aabdf12ee629c41ae0f23ffdc5da26d1aed0d88
 SHA512 
874d1ad0097f589af0b0a72ac33d6c7d64586df25779ef1b4c0a832fdf5e528ae5101e56ded736cb2a1ad1b284d6c10fe3a77ecb43df04dccc3d80875f403612
 DIST ax25-tools-0.0.10-rc5.tar.gz 372851 BLAKE2B 
1129e3aff1662bfe3840288922e60236bbd09ec1f6be72ba4a9ef51a818923af55635bc50b5f6b7befd716732dad3536282b8875d7a996518dcd8c02342d
 SHA512 
4aac4e53af5924f8f0b807bdc406fbba43043fcd33c509c1129f009e6cf8854abdd8f11087d17d9710fac2b231e80aca630ca17b8a2fe771f49df2c480c059cb

diff --git a/media-radio/ax25-tools/ax25-tools-0.0.10_rc4.ebuild 
b/media-radio/ax25-tools/ax25-tools-0.0.10_rc4.ebuild
deleted file mode 100644
index ea8cbe259bf..000
--- a/media-radio/ax25-tools/ax25-tools-0.0.10_rc4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit eutils
-
-MY_P=${P/_/-}
-
-DESCRIPTION="Basic AX.25 (Amateur Radio) administrative tools and daemons"
-HOMEPAGE="http://www.linux-ax25.org/";
-SRC_URI="http://www.linux-ax25.org/pub/${PN}/${MY_P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="X"
-
-S=${WORKDIR}/${MY_P}
-
-DEPEND="dev-libs/libax25
-   X? ( x11-libs/libX11
-   media-libs/mesa[X(+)] )"
-RDEPEND=${DEPEND}
-
-src_configure() {
-   econf $(use_with X x)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install installconf
-
-   # Package does not respect --docdir
-   rm -rf "${D}"/usr/share/doc/ax25-tools || die
-   dodoc AUTHORS ChangeLog NEWS README tcpip/ttylinkd.README \
-   user_call/README.user_call yamdrv/README.yamdrv dmascc/README.dmascc \
-   tcpip/ttylinkd.INSTALL
-
-   newinitd "${FILESDIR}"/ax25d.rc ax25d
-   newinitd "${FILESDIR}"/mheardd.rc mheardd
-   newinitd "${FILESDIR}"/netromd.rc netromd
-   newinitd "${FILESDIR}"/rip98d.rc rip98d
-   newinitd "${FILESDIR}"/rxecho.rc rxecho
-   newinitd "${FILESDIR}"/ttylinkd.rc ttylinkd
-}



[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-tools/

2020-05-28 Thread Agostino Sarubbo
commit: 8a3c03bdfc545130038c6c9f6bea46033d51dae3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu May 28 15:45:22 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu May 28 15:45:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a3c03bd

media-radio/ax25-tools: x86 stable wrt bug #724992

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild 
b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
index c6dd16167f0..eeac9ffacb6 100644
--- a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
+++ b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.linux-ax25.org/pub/${PN}/${MY_P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="X"
 
 DOCS=(  AUTHORS ChangeLog NEWS README tcpip/ttylinkd.README \



[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-tools/

2020-05-26 Thread Agostino Sarubbo
commit: bc328d2344a4f73b41f623c06d5963e5aa9bb5b8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue May 26 19:30:41 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue May 26 19:31:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc328d23

media-radio/ax25-tools: amd64 stable wrt bug #724992

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild 
b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
index f20fcc7bff8..c6dd16167f0 100644
--- a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
+++ b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.linux-ax25.org/pub/${PN}/${MY_P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 IUSE="X"
 
 DOCS=(  AUTHORS ChangeLog NEWS README tcpip/ttylinkd.README \



[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-tools/

2020-05-25 Thread Sergei Trofimovich
commit: c18cd671e74297eb8fdcd9dadaca73624f3de902
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon May 25 09:33:01 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon May 25 09:33:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c18cd671

media-radio/ax25-tools: stable 0.0.10_rc5 for ppc, bug #724992

Package-Manager: Portage-2.3.100, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild 
b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
index a6d3cf76491..f20fcc7bff8 100644
--- a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
+++ b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.linux-ax25.org/pub/${PN}/${MY_P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
 IUSE="X"
 
 DOCS=(  AUTHORS ChangeLog NEWS README tcpip/ttylinkd.README \



[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-tools/

2020-03-30 Thread Thomas Beierlein
commit: 8034b71db742741ea4e6be698c1a1be490c9e441
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Mon Mar 30 18:33:18 2020 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Mon Mar 30 18:33:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8034b71d

media-radio/ax25-tools: Minor version bump

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Beierlein  gentoo.org>

 media-radio/ax25-tools/Manifest|  1 +
 .../ax25-tools/ax25-tools-0.0.10_rc5.ebuild| 45 ++
 2 files changed, 46 insertions(+)

diff --git a/media-radio/ax25-tools/Manifest b/media-radio/ax25-tools/Manifest
index 44ec9b2c72e..c59a4f079ba 100644
--- a/media-radio/ax25-tools/Manifest
+++ b/media-radio/ax25-tools/Manifest
@@ -1 +1,2 @@
 DIST ax25-tools-0.0.10-rc4.tar.gz 364332 BLAKE2B 
36ea9c72ff69a7a66927e78fb6733c64114a719d80cfb4732ccc0b54951b105a18e674e35d3c59806489f9679aabdf12ee629c41ae0f23ffdc5da26d1aed0d88
 SHA512 
874d1ad0097f589af0b0a72ac33d6c7d64586df25779ef1b4c0a832fdf5e528ae5101e56ded736cb2a1ad1b284d6c10fe3a77ecb43df04dccc3d80875f403612
+DIST ax25-tools-0.0.10-rc5.tar.gz 372851 BLAKE2B 
1129e3aff1662bfe3840288922e60236bbd09ec1f6be72ba4a9ef51a818923af55635bc50b5f6b7befd716732dad3536282b8875d7a996518dcd8c02342d
 SHA512 
4aac4e53af5924f8f0b807bdc406fbba43043fcd33c509c1129f009e6cf8854abdd8f11087d17d9710fac2b231e80aca630ca17b8a2fe771f49df2c480c059cb

diff --git a/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild 
b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
new file mode 100644
index 000..a6d3cf76491
--- /dev/null
+++ b/media-radio/ax25-tools/ax25-tools-0.0.10_rc5.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_P=${P/_/-}
+
+DESCRIPTION="Basic AX.25 (Amateur Radio) administrative tools and daemons"
+HOMEPAGE="http://www.linux-ax25.org/";
+SRC_URI="http://www.linux-ax25.org/pub/${PN}/${MY_P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="X"
+
+DOCS=(  AUTHORS ChangeLog NEWS README tcpip/ttylinkd.README \
+   user_call/README.user_call yamdrv/README.yamdrv 
dmascc/README.dmascc \
+   tcpip/ttylinkd.INSTALL )
+
+S=${WORKDIR}/${MY_P}
+
+DEPEND="
+   dev-libs/libax25
+   X? (
+   x11-libs/libX11
+   media-libs/mesa[X(+)]
+   )"
+RDEPEND=${DEPEND}
+
+src_configure() {
+   econf $(use_with X x)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install installconf
+   einstalldocs
+
+   newinitd "${FILESDIR}"/ax25d.rc ax25d
+   newinitd "${FILESDIR}"/mheardd.rc mheardd
+   newinitd "${FILESDIR}"/netromd.rc netromd
+   newinitd "${FILESDIR}"/rip98d.rc rip98d
+   newinitd "${FILESDIR}"/rxecho.rc rxecho
+   newinitd "${FILESDIR}"/ttylinkd.rc ttylinkd
+}



[gentoo-commits] repo/gentoo:master commit in: media-radio/ax25-tools/, media-radio/wspr/, media-radio/tucnak2/, ...

2017-12-10 Thread Michał Górny
commit: f1cbb07fa68456f1f512fab4d8adef698aa846ad
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 10 10:35:42 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec 10 10:40:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1cbb07f

media-radio/*: Update Manifest hashes

 media-radio/KochMorse/Manifest  |  2 +-
 media-radio/adifmerg/Manifest   |  2 +-
 media-radio/ax25-apps/Manifest  |  2 +-
 media-radio/ax25-tools/Manifest |  2 +-
 media-radio/cwdaemon/Manifest   |  2 +-
 media-radio/dxcc/Manifest   |  2 +-
 media-radio/fldigi/Manifest | 18 +-
 media-radio/flrig/Manifest  | 18 +-
 media-radio/gpredict/Manifest   |  2 +-
 media-radio/grig/Manifest   |  2 +-
 media-radio/ibp/Manifest|  2 +-
 media-radio/qrq/Manifest|  2 +-
 media-radio/svxlink/Manifest|  2 +-
 media-radio/tlf/Manifest|  2 +-
 media-radio/tucnak2/Manifest|  2 +-
 media-radio/unixcw/Manifest |  2 +-
 media-radio/wsjtx/Manifest  |  6 +++---
 media-radio/wspr/Manifest   |  4 ++--
 media-radio/xastir/Manifest |  4 ++--
 media-radio/xdx/Manifest|  2 +-
 media-radio/xlog/Manifest   |  4 ++--
 21 files changed, 42 insertions(+), 42 deletions(-)

diff --git a/media-radio/KochMorse/Manifest b/media-radio/KochMorse/Manifest
index cea254e75f1..6ce84dcc696 100644
--- a/media-radio/KochMorse/Manifest
+++ b/media-radio/KochMorse/Manifest
@@ -1 +1 @@
-DIST KochMorse-0.99.6.tar.gz 30497 SHA256 
c481c4bfa2315c5dee0c20c972e77dd406fe283a85330ec6bae91b73b71fbdf6 SHA512 
0803f3fb092962bebffccac143dd4410330d529ec1fe3a8a0c377f640349e0a8f5c254772c5ed7e63cf63c47ce14f304658b4870c78cf89c391823c93ab9b005
 WHIRLPOOL 
89a5f07d23d9627c9e6c48f938dfc5ee07ec92c5c6504af1a8f210b83c8ee5e0bfac8b876fb52b07d428c2556998f74b5a8d446402da0b35fc16321712917fda
+DIST KochMorse-0.99.6.tar.gz 30497 BLAKE2B 
b6c40378f1e105f3010a5d703f910ae7c2216da5892f65c85cb2b56227f38d9e88d49fac38ed3ab8513cae45dfb5bb0474fab420b8151b028061392f7e657dfd
 SHA512 
0803f3fb092962bebffccac143dd4410330d529ec1fe3a8a0c377f640349e0a8f5c254772c5ed7e63cf63c47ce14f304658b4870c78cf89c391823c93ab9b005

diff --git a/media-radio/adifmerg/Manifest b/media-radio/adifmerg/Manifest
index 29e4239e70a..9121e5028a2 100644
--- a/media-radio/adifmerg/Manifest
+++ b/media-radio/adifmerg/Manifest
@@ -1 +1 @@
-DIST adifmerg31.tgz 47460 SHA256 
7a4ec54c283d0c215508c0e62a0ce922739415c766b77cddd6f3d3a8206ae210 SHA512 
851a90d4269d79359eb76168d67f980fcbc551ee8ef221e4caaf9ba6fde756aebe03d80670b7cb5e91e20aa5ef81d772ddaedc204b3cf57cfdbb62d593575fa7
 WHIRLPOOL 
7d53e533703193306482e8e3e9291910931926c5489272d3430993ea245d8cf71069360e06204232b636fa62f4dd1dfe223e5650ab09063fb691af2e3d80205d
+DIST adifmerg31.tgz 47460 BLAKE2B 
14bf6a85ba5a22972e1cf1fae068a4eaa92bf0e205904c3e11bcbe83aab800f2da02d9dc4835e75189b49590c005aa3412f19170b8f6abb39d84000d006f7384
 SHA512 
851a90d4269d79359eb76168d67f980fcbc551ee8ef221e4caaf9ba6fde756aebe03d80670b7cb5e91e20aa5ef81d772ddaedc204b3cf57cfdbb62d593575fa7

diff --git a/media-radio/ax25-apps/Manifest b/media-radio/ax25-apps/Manifest
index 27d4d837636..922a82c89bc 100644
--- a/media-radio/ax25-apps/Manifest
+++ b/media-radio/ax25-apps/Manifest
@@ -1 +1 @@
-DIST ax25-apps-0.0.8-rc4.tar.gz 442172 SHA256 
0e031721a440cc169768080f1d6bea32ef1d2a9c80a754ae5239738f9ab8fe0a SHA512 
c99b553c5cadb0e389c1cb35e79fea61b628c76f5ef35c35876e492afc7ab796f8781c3ab5987a096f0816389e9772274fe54e88c16fca0fd30013da3d74d38b
 WHIRLPOOL 
0402f5d149642ed479a260a64c091bcd4a797a53e5ac2df239fd3e5d38821c5fe0cbacffe7c2d7ebeb614bc455805269eb415fb73315fd830da9c05310152d8f
+DIST ax25-apps-0.0.8-rc4.tar.gz 442172 BLAKE2B 
59a622c0e675cadc90a7d728b899b1820153d6b9e35f3ccdbac74d191f844d1642dd2e9192d6dce0f1208cbc26b98cb1643f8d1041ec3802b833ad5cbc903f81
 SHA512 
c99b553c5cadb0e389c1cb35e79fea61b628c76f5ef35c35876e492afc7ab796f8781c3ab5987a096f0816389e9772274fe54e88c16fca0fd30013da3d74d38b

diff --git a/media-radio/ax25-tools/Manifest b/media-radio/ax25-tools/Manifest
index 609e756fff4..44ec9b2c72e 100644
--- a/media-radio/ax25-tools/Manifest
+++ b/media-radio/ax25-tools/Manifest
@@ -1 +1 @@
-DIST ax25-tools-0.0.10-rc4.tar.gz 364332 SHA256 
d36ad473f8261ea91dbef105d7493890774f2d1d03a485b86ddd23cbed597e20 SHA512 
874d1ad0097f589af0b0a72ac33d6c7d64586df25779ef1b4c0a832fdf5e528ae5101e56ded736cb2a1ad1b284d6c10fe3a77ecb43df04dccc3d80875f403612
 WHIRLPOOL 
d8268bc596df968f7c7f6fe8da90155462d20c9ead1d4099c7d1d7082a3a887fb3c6a227c13309d6aa9f815cccf7db61e976f97e1d45714ed7a470864d671b5a
+DIST ax25-tools-0.0.10-rc4.tar.gz 364332 BLAKE2B 
36ea9c72ff69a7a66927e78fb6733c64114a719d80cfb4732ccc0b54951b105a18e674e35d3c59806489f9679aabdf12ee629c41ae0f23ffdc5da26d1aed0d88
 SHA512 
874d1ad0097f589af0b0a72ac33d6c7d64586df25779ef1b4c0a832fdf5e528ae5101e56ded736cb2a1ad1b284d6c10fe3a77ecb43df04dccc3d80875f403612

diff --git a/media-radio/cwdaemon/Manifest b/media-radio/cwdaemon/Manifest
index 33bf03e0b37..2eed12f9492