summaryrefslogtreecommitdiff
path: root/x11-terms/sakura
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /x11-terms/sakura
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'x11-terms/sakura')
-rw-r--r--x11-terms/sakura/Manifest1
-rw-r--r--x11-terms/sakura/files/sakura-3.8.4-gentoo.patch18
-rw-r--r--x11-terms/sakura/metadata.xml19
-rw-r--r--x11-terms/sakura/sakura-3.8.9.ebuild44
4 files changed, 0 insertions, 82 deletions
diff --git a/x11-terms/sakura/Manifest b/x11-terms/sakura/Manifest
deleted file mode 100644
index 38d86b45d157..000000000000
--- a/x11-terms/sakura/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sakura-3.8.9.tar.bz2 62387 BLAKE2B f4b91168727e02e555c45c9c07dfd9ae4d1cfe21ec5822bae156c0502fa0be0a55775eef93f52d35bae723782b97e5a4634d5c5ccf4f89a0055fe11c95b69896 SHA512 69533f5c9e1236628a9ce5a83055734448f11bae9a55a4f32cb6002ed8314e962518750b6fba5aaff9ce81e214294d78900dba2461eb671d63d0e7670e1659f4
diff --git a/x11-terms/sakura/files/sakura-3.8.4-gentoo.patch b/x11-terms/sakura/files/sakura-3.8.4-gentoo.patch
deleted file mode 100644
index 8289d3ed9ea0..000000000000
--- a/x11-terms/sakura/files/sakura-3.8.4-gentoo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -39,9 +39,4 @@
- ADD_DEFINITIONS (-DBUILDTYPE="${CMAKE_BUILD_TYPE}")
-
--IF (${CMAKE_BUILD_TYPE} MATCHES "Debug")
-- SET (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")
--ELSE (${CMAKE_BUILD_TYPE} NOT MATCHES "Debug")
-- SET (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -Wno-deprecated-declarations")
--ENDIF (${CMAKE_BUILD_TYPE} MATCHES "Debug")
-
- INCLUDE_DIRECTORIES (. ${GTK_INCLUDE_DIRS} ${VTE_INCLUDE_DIRS})
-@@ -58,5 +53,4 @@
- INSTALL (FILES ${sakura_BINARY_DIR}/sakura.1 DESTINATION share/man/man1)
- ENDIF (POD2MAN)
--INSTALL (FILES README.md DESTINATION share/doc/sakura)
-
- FILE (GLOB MO_FILES po/*.mo)
diff --git a/x11-terms/sakura/metadata.xml b/x11-terms/sakura/metadata.xml
deleted file mode 100644
index 95a554a40402..000000000000
--- a/x11-terms/sakura/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <longdescription>
- Sakura is a terminal emulator based on GTK and VTE. It's a
- terminal emulator with few dependencies, so you don't need
- a full GNOME desktop installed to have a decent terminal
- emulator. Current terminal emulators based on VTE are
- gnome-terminal, XFCE Terminal, TermIt and a small sample
- program included in the vte sources. Sakura differences from
- the last one is that it uses a notebook to provide several
- terminals in one window and adds a contextual menu with some
- basic options. No more no less.
- </longdescription>
- <upstream>
- <remote-id type="launchpad">sakura</remote-id>
- </upstream>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/x11-terms/sakura/sakura-3.8.9.ebuild b/x11-terms/sakura/sakura-3.8.9.ebuild
deleted file mode 100644
index e2eda6c56ea2..000000000000
--- a/x11-terms/sakura/sakura-3.8.9.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="GTK/VTE based terminal emulator"
-HOMEPAGE="https://www.pleyades.net/david/projects/sakura"
-SRC_URI="https://launchpad.net/sakura/trunk/${PV}/+download/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-
-RDEPEND="
- >=dev-libs/glib-2.40:2
- x11-libs/gtk+:3[X]
- x11-libs/pango
- x11-libs/vte:2.91"
-DEPEND="
- ${RDEPEND}
- x11-base/xorg-proto
- x11-libs/libX11"
-BDEPEND="
- sys-devel/gettext
- >=virtual/perl-podlators-5.10"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-3.8.4-gentoo.patch
-)
-
-src_prepare() {
- cmake_src_prepare
-
- if [[ -v LINGUAS ]]; then
- local lingua
- for lingua in po/*.po; do
- lingua=${lingua#*/}
- lingua=${lingua%.*}
- has ${lingua} ${LINGUAS} || rm po/${lingua}.po || die
- done
- fi
-}