x11-misc/rofi-file-browser-extended: treeclean (moved to ::gentoo)

Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
Florian Schmaus
2021-08-20 20:45:35 +02:00
parent c709e191d0
commit 665475e045
4 changed files with 0 additions and 82 deletions

View File

@@ -1 +0,0 @@
DIST rofi-file-browser-extended-1.2.0.tar.gz 23560 BLAKE2B bb5637e9a56009949b4241c218a73fdb79cf5065906b7f48874ee64e3d38d4b68a751eec937eededd040086b2560f6e6f92440d9cc0900be3f3dee54a03f8f83 SHA512 74e5adeadaa0322e1d489bda79db58b416553daefbbc353012b82855529875aefd42c53458efe059ee1aa7ea6b7550b791dd56a11c207c5cc6f4ed46d17bdb81

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,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type='person'>
<email>flow@gentoo.org</email>
<name>Florian Schmaus</name>
</maintainer>
</pkgmetadata>

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"
}