Install this version:
emerge -a =app-misc/clipboard-0.10.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-misc/clipboard-0.10.0
Or alternatively:
emerge --autounmask-write -a =app-misc/clipboard-0.10.0
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.10.0 | 8 | ~amd64 | 0 |
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
MY_PN="Clipboard"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Cut, copy, and paste anything in your terminal"
HOMEPAGE="https://getclipboard.app/ https://github.com/Slackadays/Clipboard"
SRC_URI="https://github.com/Slackadays/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug lto wayland X"
DEPEND="X? ( x11-libs/libXext )
wayland? ( dev-libs/wayland-protocols )
dev-libs/openssl
media-libs/alsa-lib
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
"-DCMAKE_INSTALL_LIBDIR=$(get_libdir)"
"-DCMAKE_C_FLAGS=$(usex debug "${CFLAGS}" "${CFLAGS} -DNDEBUG")"
"-DCMAKE_CXX_FLAGS=$(usex debug "${CXXFLAGS}" "${CXXFLAGS} -DNDEBUG")"
"-DNO_WAYLAND=$(usex !wayland)"
"-DNO_X11=$(usex !X)"
"-DNO_LTO=$(usex !lto)"
"-DNO_ALSA=no"
)
cmake_src_configure
}
Manage flags for this package:
euse -i <flag> -p app-misc/clipboard |
euse -E <flag> -p app-misc/clipboard |
euse -D <flag> -p app-misc/clipboard
X? ( x11-libs/libXext ) wayland? ( dev-libs/wayland-protocols ) dev-libs/openssl media-libs/alsa-lib
X? ( x11-libs/libXext ) wayland? ( dev-libs/wayland-protocols ) dev-libs/openssl media-libs/alsa-lib
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | clipboard-0.10.0.tar.gz | 31623894 bytes | https://github.com/Slackadays/Clipboard/archive/refs/tags/0.10.0.tar.gz |