diff options
author | 2015-07-12 14:24:35 +0200 | |
---|---|---|
committer | 2015-10-11 10:49:23 +0200 | |
commit | 48c3141f013c6a363f5c8e76ecf915cc2f9486e4 (patch) | |
tree | 8bd5286c7d57eec86d12175c4a962308d0c11f84 /sys-block/zram-init/zram-init-3.4.ebuild | |
parent | Bump mv_perl (diff) | |
download | mv-48c3141f013c6a363f5c8e76ecf915cc2f9486e4.tar.gz mv-48c3141f013c6a363f5c8e76ecf915cc2f9486e4.tar.bz2 mv-48c3141f013c6a363f5c8e76ecf915cc2f9486e4.zip |
Bump packages for set -u
Diffstat (limited to 'sys-block/zram-init/zram-init-3.4.ebuild')
-rw-r--r-- | sys-block/zram-init/zram-init-3.4.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sys-block/zram-init/zram-init-3.4.ebuild b/sys-block/zram-init/zram-init-3.4.ebuild new file mode 100644 index 00000000..ddb31e84 --- /dev/null +++ b/sys-block/zram-init/zram-init-3.4.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +RESTRICT="mirror" +inherit eutils readme.gentoo systemd + +DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram" +HOMEPAGE="https://github.com/vaeth/zram-init/" +SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="!<sys-apps/openrc-0.13" + +DISABLE_AUTOFORMATTING="true" +DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel: + rc-config add zram default +If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl. +You might need to modify /etc/modprobe.d/zram.conf" + +src_prepare() { + use prefix || sed -i \ + -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \ + -- sbin/* || die + epatch_user +} + +src_install() { + dosbin sbin/* + doinitd openrc/init.d/* + doconfd openrc/conf.d/* + systemd_dounit systemd/system/* + insinto /etc/modprobe.d + doins modprobe.d/* + insinto /usr/share/zsh/site-functions + doins zsh/* + readme.gentoo_create_doc +} |