x11-misc/rofi-file-browser-extended: drop 1.2.0-r2

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2022-12-18 11:29:27 +01:00
committed by Florian Schmaus
parent 1df248184e
commit 3d04a98e40
3 changed files with 0 additions and 74 deletions

View File

@@ -1,2 +1 @@
DIST rofi-file-browser-extended-1.2.0.tar.gz 23560 BLAKE2B bb5637e9a56009949b4241c218a73fdb79cf5065906b7f48874ee64e3d38d4b68a751eec937eededd040086b2560f6e6f92440d9cc0900be3f3dee54a03f8f83 SHA512 74e5adeadaa0322e1d489bda79db58b416553daefbbc353012b82855529875aefd42c53458efe059ee1aa7ea6b7550b791dd56a11c207c5cc6f4ed46d17bdb81
DIST rofi-file-browser-extended-1.3.1.tar.gz 27169 BLAKE2B ced5ae91a865b136bcb2182a17c7a49cbdfcc861f8d1063415691afb13f5bdf3f1c2c0fc56a21a0dec31ee656c2379e55a4f60899c59ca7e056438142675aeb2 SHA512 269e33d62e5fdf7f6c48763ae4309fac53873d53af4ebf78f731b709ac6ff41d8f8cf21de917866fe5a80f4949d70d3be6e516c3825a8768106c706438a5b3d1

View File

@@ -1,32 +0,0 @@
From 47f61ae6b971e71c55788b790146ffe63d64c834 Mon Sep 17 00:00:00 2001
From: Florian Schmaus <flo@geekplace.eu>
Date: Tue, 1 Jun 2021 11:05:05 +0200
Subject: [PATCH] Do not install man page
---
CMakeLists.txt | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5ab8168df336..901de539097e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -28,15 +28,3 @@ target_link_libraries(filebrowser
)
install(TARGETS filebrowser DESTINATION ${ROFI_PLUGINS_DIR})
-
-
-
-# Manpage
-
-add_custom_command(OUTPUT "doc/rofi-file-browser-extended.1.gz"
- COMMAND gzip -k "doc/rofi-file-browser-extended.1"
- COMMENT "Packing manpage")
-
-add_custom_target(manpage ALL DEPENDS "doc/rofi-file-browser-extended.1.gz")
-
-install(FILES "doc/rofi-file-browser-extended.1.gz" DESTINATION "/usr/share/man/man1")
--
2.31.1

View File

@@ -1,41 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="A file browser for rofi"
HOMEPAGE="https://github.com/marvinkreis/rofi-file-browser-extended"
if [[ ${PV} == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/marvinkreis/${PN}.git"
else
SRC_URI="https://github.com/marvinkreis/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
IUSE=""
BDEPEND="virtual/pkgconfig"
COMMON_DEPEND="
dev-libs/glib:2
x11-misc/rofi
"
DEPEND="
${COMMON_DEPEND}
x11-libs/cairo
"
RDEPEND="${COMMON_DEPEND}"
PATCHES=(
"${FILESDIR}/${P}-do-not-install-man-page.patch"
)
src_install() {
cmake_src_install
doman "doc/${PN}.1"
}