net-dialup/syncterm - 9999 (guru)

Search

Install

Install this version:

emerge -a =net-dialup/syncterm-9999

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

autounmask =net-dialup/syncterm-9999

Or alternatively:

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

Package Information

Description:
BBS (bulletin board system) terminal
Homepage:
https://syncterm.bbsdev.net/
License:
GPL-2+

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit git-r3 desktop

DESCRIPTION="BBS (bulletin board system) terminal"
HOMEPAGE="https://syncterm.bbsdev.net/"
EGIT_REPO_URI="https://gitlab.synchro.net/main/sbbs"

LICENSE="GPL-2+"
SLOT="0"
IUSE="ncurses sdl X"

DEPEND="ncurses? ( sys-libs/ncurses )
	sdl? ( media-libs/libsdl2 )
	X? ( x11-libs/libX11 )"
RDEPEND="${DEPEND}"

src_compile() {
	# FIXME: probably bad form
	cd "${S}/src/syncterm"

	# NOTE: build system automatically detects whether
	# optional dependencies are there, strangely

	emake
	emake syncterm.man

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

src_install() {
	# Regular ‘emake install’ violates policy in multiple ways
	dobin src/syncterm/gcc.linux.x64.exe.debug/syncterm
	doicon src/syncterm/syncterm.png
	domenu src/syncterm/syncterm.desktop
	doman src/syncterm/syncterm.1

	# Things not installed by ‘emake install’
	dodoc src/syncterm/CHANGES
}

USE Flags

Manage flags for this package: euse -i <flag> -p net-dialup/syncterm | euse -E <flag> -p net-dialup/syncterm | euse -D <flag> -p net-dialup/syncterm

Global/Standard Flags

sdl
X

Inherited Eclasses

Dependencies

DEPEND

ncurses? ( sys-libs/ncurses )
	sdl? ( media-libs/libsdl2 )
	X? ( x11-libs/libX11 )

RDEPEND

ncurses? ( sys-libs/ncurses )
	sdl? ( media-libs/libsdl2 )
	X? ( x11-libs/libX11 )