diff options
author | Sam James <sam@gentoo.org> | 2022-12-21 21:54:00 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-21 22:25:18 +0000 |
commit | b946c0860904f7ffec71ad21b41a2a0ca09f22c8 (patch) | |
tree | c400d3e320ee3e0e12bc4ac359d308d2b7acdac6 /x11-plugins | |
parent | sys-process/nmon: drop 16m (diff) | |
download | gentoo-b946c0860904f7ffec71ad21b41a2a0ca09f22c8.tar.gz gentoo-b946c0860904f7ffec71ad21b41a2a0ca09f22c8.tar.bz2 gentoo-b946c0860904f7ffec71ad21b41a2a0ca09f22c8.zip |
x11-plugins/asclock: drop 2.0.12-r3
Bug: https://bugs.gentoo.org/886817
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/asclock/asclock-2.0.12-r3.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/x11-plugins/asclock/asclock-2.0.12-r3.ebuild b/x11-plugins/asclock/asclock-2.0.12-r3.ebuild deleted file mode 100644 index ef27e399a5fe..000000000000 --- a/x11-plugins/asclock/asclock-2.0.12-r3.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Clock applet for AfterStep" -HOMEPAGE="http://tigr.net/afterstep/applets/" -SRC_URI="http://www.tigr.net/afterstep/download/asclock/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~x64-solaris" - -DEPEND="x11-libs/libXpm" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-gcc41.patch - "${FILESDIR}"/${P}-fno-common.patch -) - -src_prepare() { - default - ln -s themes/classic default_theme -} - -src_configure() { :; } - -src_compile() { - local x - # will break Solaris - [[ ${CHOST} == *-linux-gnu ]] && CFLAGS="${CFLAGS} \ - -Dlinux \ - -D_POSIX_C_SOURCE=199309L \ - -D_POSIX_SOURCE \ - -D_XOPEN_SOURCE" - for x in asclock parser symbols config - do - $(tc-getCC) \ - ${CPPFLAGS} ${CFLAGS} ${ASFLAGS} \ - -I"${EPREFIX}"/usr/include \ - -D_BSD_SOURCE \ - -D_SVID_SOURCE \ - -DFUNCPROTO=15 \ - -DNARROWPROTO \ - -c -o ${x}.o ${x}.c || die "compile asclock failed" - done - $(tc-getCC) \ - ${LDFLAGS} \ - -o asclock \ - asclock.o parser.o symbols.o config.o \ - -L"${EPREFIX}"/usr/lib \ - -L"${EPREFIX}"/usr/lib/X11 \ - -lXpm -lXext -lX11 || die "link asclock failed" -} - -src_install() { - dobin asclock - local themesdir="/usr/share/${PN}/themes" - insinto ${themesdir} - doins -r themes/* - dodoc README README.THEMES TODO - cd "${ED}"/${themesdir} || die - rm Freeamp/Makefile{,.*} || die - ln -s classic default_theme || die -} |