mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 14:44:11 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
18 lines
478 B
Bash
18 lines
478 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Shows status of logical drives attached to HP SmartArray controllers"
|
|
HOMEPAGE="https://cciss.sourceforge.net/#cciss_utils"
|
|
SRC_URI="https://downloads.sourceforge.net/cciss/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
KEYWORDS="amd64 x86"
|
|
SLOT="0"
|
|
|
|
src_install() {
|
|
default
|
|
exeinto /etc/cron.hourly
|
|
newexe "${FILESDIR}/cciss_vol_status-r2.cron" cciss_vol_status
|
|
}
|