summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-11-03 16:17:54 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-11-03 16:17:54 +0000
commit4f9112682b9ae4997295d9ccd4504d8d7c68e5e7 (patch)
tree591a12db548ebf00ea6027992341dd3017b7f00a /x11-misc/asclock/asclock-2.0.12.ebuild
parentmoved asclock from x11-misc to x11-plugins (diff)
downloadgentoo-2-4f9112682b9ae4997295d9ccd4504d8d7c68e5e7.tar.gz
gentoo-2-4f9112682b9ae4997295d9ccd4504d8d7c68e5e7.tar.bz2
gentoo-2-4f9112682b9ae4997295d9ccd4504d8d7c68e5e7.zip
moved asapm and ascpu from x11-misc to x11-plugins
Diffstat (limited to 'x11-misc/asclock/asclock-2.0.12.ebuild')
-rw-r--r--x11-misc/asclock/asclock-2.0.12.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/x11-misc/asclock/asclock-2.0.12.ebuild b/x11-misc/asclock/asclock-2.0.12.ebuild
deleted file mode 100644
index 26ff563d13e6..000000000000
--- a/x11-misc/asclock/asclock-2.0.12.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/asclock/asclock-2.0.12.ebuild,v 1.7 2002/10/04 06:41:24 vapier Exp $
-
-S=${WORKDIR}/${P}
-
-DESCRIPTION="Clock applet for AfterStep"
-SRC_URI="http://www.tigr.net/afterstep/download/asclock/${P}.tar.gz"
-HOMEPAGE="http://www.tigr.net/afterstep/list.pl"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 sparc sparc64"
-
-DEPEND="virtual/glibc virtual/x11"
-
-src_unpack() {
- unpack ${P}.tar.gz
- cd ${S}
- ln -s themes/classic default_theme
-}
-
-src_compile() {
- local x
- for x in asclock parser symbols config
- do
- gcc \
- ${CFLAGS} \
- -I/usr/X11R6/include \
- -Dlinux -D__i386__ \
- -D_POSIX_C_SOURCE=199309L \
- -D_POSIX_SOURCE \
- -D_XOPEN_SOURCE \
- -D_BSD_SOURCE \
- -D_SVID_SOURCE \
- -DFUNCPROTO=15 \
- -DNARROWPROTO \
- -c -o ${x}.o ${x}.c || die
- done
- gcc \
- ${CFLAGS} \
- -o asclock \
- asclock.o parser.o symbols.o config.o \
- -L/usr/X11R6/lib \
- -L/usr/lib/X11 \
- -lXpm -lXext -lX11 || die
-}
-
-src_install () {
- dobin asclock
- dodir usr/share/asclock
- cp -a themes/* ${D}/usr/share/asclock
- dodoc COPYING INSTALL README README.THEMES TODO
-}