net-dialup/syncterm - 1.3 (myov)

Search

Install

Install this version:

emerge -a =net-dialup/syncterm-1.3

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =net-dialup/syncterm-1.3

Or alternatively:

emerge --autounmask-write -a =net-dialup/syncterm-1.3

Package Information

Description:
ANSI-BBS terminal which supports telnet, rlogin, and SSH
Homepage:
https://syncterm.bbsdev.net/
License:
GPL-2+

Ebuild Details

Version EAPI Keywords Slot
1.3 8 ~amd64 ~arm ~arm64 ~mips ~ppc64 ~riscv ~x86 0
View Raw Ebuild
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit custom-cflags desktop toolchain-funcs

DESCRIPTION="ANSI-BBS terminal which supports telnet, rlogin, and SSH"
HOMEPAGE="https://syncterm.bbsdev.net/"
SRC_URI="https://sourceforge.net/projects/syncterm/files/syncterm/syncterm-${PV}/syncterm-${PV}-src.tgz"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc64 ~riscv ~x86"

RDEPEND="
	sys-libs/ncurses:=
	media-libs/libsdl2
	x11-libs/libX11
"
DEPEND="
	${RDEPEND}
"

DOCS=( src/syncterm/CHANGES )

src_prepare() {
	tc-export AR CC STRIP

	default
}

src_compile() {
	cd "${S}/src/syncterm" || die

	emake USE_SDL="1" USE_SDL_AUDIO="1"
	emake syncterm.man

	# "doman" complains about wrong filename.
	cp ./syncterm.man ./syncterm.1
}

src_install() {
	exeinto /usr/bin
	doexe ./src/syncterm/gcc.linux.x64.exe.debug/syncterm

	local sz=""
	for sz in 16 22 24 32 36 48 64 256 ; do
		doicon --size "${sz}" "./src/syncterm/syncterm${sz}.png"
	done

	doicon --size scalable ./src/syncterm/icons/syncterm.svg
	domenu ./src/syncterm/syncterm.desktop

	doman ./src/syncterm/syncterm.1
	einstalldocs
}

Inherited Eclasses

Dependencies

DEPEND

	
	sys-libs/ncurses:=
	media-libs/libsdl2
	x11-libs/libX11

RDEPEND

	sys-libs/ncurses:=
	media-libs/libsdl2
	x11-libs/libX11

Manifest for 1.3

Type File Size Source URLs
DIST syncterm-1.3-src.tgz 10470687 bytes https://sourceforge.net/projects/syncterm/files/syncterm/syncterm-1.3/syncterm-1.3-src.tgz