commit: f68b7293e061095597227410c9b29178112553db Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org> AuthorDate: Tue Sep 3 17:42:17 2024 +0000 Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org> CommitDate: Tue Sep 3 17:44:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f68b7293
app-misc/hddled: drop 0.3 Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org> app-misc/hddled/hddled-0.3.ebuild | 42 --------------------------------------- 1 file changed, 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 -}
