summaryrefslogtreecommitdiff
path: root/sys-fs/cachefilesd/cachefilesd-0.10.10-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-02-29 05:41:15 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-02-29 05:41:15 +0000
commit48f3e81fd35a18cd49f8b8d6a041f33ad88f9c89 (patch)
tree21e7be95bcd3ec7cc6c71b3fea560ea936ddef82 /sys-fs/cachefilesd/cachefilesd-0.10.10-r1.ebuild
parentcb7e4377c338fd6cd2fb4fc22d64eef88e390161 (diff)
gentoo auto-resync : 29:02:2024 - 05:41:15
Diffstat (limited to 'sys-fs/cachefilesd/cachefilesd-0.10.10-r1.ebuild')
-rw-r--r--sys-fs/cachefilesd/cachefilesd-0.10.10-r1.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/sys-fs/cachefilesd/cachefilesd-0.10.10-r1.ebuild b/sys-fs/cachefilesd/cachefilesd-0.10.10-r1.ebuild
deleted file mode 100644
index 8347767ca534..000000000000
--- a/sys-fs/cachefilesd/cachefilesd-0.10.10-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic systemd toolchain-funcs tmpfiles readme.gentoo-r1
-
-DESCRIPTION="Provides a caching directory on an already mounted filesystem"
-HOMEPAGE="https://people.redhat.com/~dhowells/fscache/"
-SRC_URI="https://people.redhat.com/~dhowells/fscache/${P}.tar.bz2"
-
-SLOT="0"
-LICENSE="GPL-2+"
-KEYWORDS="amd64 ~riscv x86"
-IUSE="doc selinux"
-
-RDEPEND="selinux? ( sec-policy/selinux-cachefilesd )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.10.9-makefile.patch
-)
-
-src_prepare() {
- default
- if ! use selinux; then
- sed -e '/^secctx/s:^:#:g' -i cachefilesd.conf || die
- fi
-
- tc-export CC
- append-flags -fpie
-}
-
-src_install() {
- default
-
- readme.gentoo_create_doc
-
- if use selinux; then
- dodoc -r selinux
- docompress -x /usr/share/doc/${PF}/selinux
- fi
-
- dodoc howto.txt
-
- newconfd "${FILESDIR}"/${PN}.conf ${PN}
- newinitd "${FILESDIR}"/${PN}-3.init ${PN}
-
- sed -i 's@ExecStart=/usr@ExecStart=@' ${PN}.service || die "failed to fix path"
- systemd_dounit ${PN}.service
- newtmpfiles "${FILESDIR}"/${PN}-tmpfiles.d ${PN}.conf
-}
-
-pkg_postinst() {
- tmpfiles_process ${PN}.conf
-
- if [[ ! -d /var/cache/fscache ]]; then
- FORCE_PRINT_ELOG=1
- fi
- readme.gentoo_print_elog
-}