diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2024-09-03 19:42:17 +0200 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-09-03 19:44:59 +0200 |
commit | f68b7293e061095597227410c9b29178112553db (patch) | |
tree | e1301038b141b285e8be3a781eed18d21811b909 /app-misc/hddled | |
parent | app-misc/hello: drop 2.10-r1 (diff) | |
download | gentoo-f68b7293e061095597227410c9b29178112553db.tar.gz gentoo-f68b7293e061095597227410c9b29178112553db.tar.bz2 gentoo-f68b7293e061095597227410c9b29178112553db.zip |
app-misc/hddled: drop 0.3
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'app-misc/hddled')
-rw-r--r-- | app-misc/hddled/hddled-0.3.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/app-misc/hddled/hddled-0.3.ebuild b/app-misc/hddled/hddled-0.3.ebuild deleted file mode 100644 index 2e4b5b8cf0bb..000000000000 --- a/app-misc/hddled/hddled-0.3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Show hard disk activity using the scroll lock LED" -HOMEPAGE="http://members.optusnet.com.au/foonly/whirlpool/code/" -SRC_URI="mirror://gentoo/${P}.c.xz" -S="${WORKDIR}" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="X" - -DEPEND="X? ( x11-libs/libX11 )" -RDEPEND="${DEPEND}" - -src_prepare() { - default - - mv ${P}.c ${PN}.c || die -} - -src_compile() { - $(tc-getCC) ${CFLAGS} ${CPPFLAGS} -o ${PN} ${PN}.c ${LDFLAGS} || die - - if use X ; then - $(tc-getCC) ${CFLAGS} ${CPPFLAGS} -DX -lX11 -o x${PN} ${PN}.c ${LDFLAGS} || die - fi -} - -src_install() { - dobin ${PN} - - if use X ; then - dobin x${PN} - elog "X version was renamed to x${PN}" - fi -} |