diff options
author | Julien Perrot <blackmore@gentoo.org> | 2002-06-07 18:34:57 +0000 |
---|---|---|
committer | Julien Perrot <blackmore@gentoo.org> | 2002-06-07 18:34:57 +0000 |
commit | 9e5922e1b72cdfefab073c1029f0ef6bb0caecf7 (patch) | |
tree | 500ad45c3318a21250448ae274d494238ea2f900 /x11-misc | |
parent | gcc31 build (diff) | |
download | gentoo-2-9e5922e1b72cdfefab073c1029f0ef6bb0caecf7.tar.gz gentoo-2-9e5922e1b72cdfefab073c1029f0ef6bb0caecf7.tar.bz2 gentoo-2-9e5922e1b72cdfefab073c1029f0ef6bb0caecf7.zip |
addition of wmfishtime-1.23-r2.ebuild
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/wmfishtime/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/wmfishtime/wmfishtime-1.23-r2.ebuild | 28 |
2 files changed, 35 insertions, 1 deletions
diff --git a/x11-misc/wmfishtime/ChangeLog b/x11-misc/wmfishtime/ChangeLog index b00c1a60b2f9..7c8d38405151 100644 --- a/x11-misc/wmfishtime/ChangeLog +++ b/x11-misc/wmfishtime/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/wmfishtime # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmfishtime/ChangeLog,v 1.1 2002/02/01 21:53:38 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmfishtime/ChangeLog,v 1.2 2002/06/07 18:34:57 blackmore Exp $ + +*wmfishtime-1.23-r2 (7 Jun 2002) + + 7 Jun 2002; J. Perrot <blackmore@gentoo.org> : + + Correction of the sed substitution in the ebuild file *wmfishtime-1.23-r1 (1 Feb 2002) diff --git a/x11-misc/wmfishtime/wmfishtime-1.23-r2.ebuild b/x11-misc/wmfishtime/wmfishtime-1.23-r2.ebuild new file mode 100644 index 000000000000..416291afa3f9 --- /dev/null +++ b/x11-misc/wmfishtime/wmfishtime-1.23-r2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Donny Davies <woodchip@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmfishtime/wmfishtime-1.23-r2.ebuild,v 1.1 2002/06/07 18:34:57 blackmore Exp $ + +# to make this work in KDE, run it with the -b option :) +DESCRIPTION="A fun clock applet for your desktop featuring swimming fish" +HOMEPAGE="http://www.ne.jp/asahi/linux/timecop" + +S=${WORKDIR}/${P} +SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/${P}.tar.gz" +DEPEND="virtual/glibc =x11-libs/gtk+-1.2*" + +src_compile() { + + sed -e "s/CFLAGS = -O3/CFLAGS = ${CFLAGS}/" Makefile | cat > Makefile.tmp + mv Makefile.tmp Makefile + + make || die +} + +src_install () { + + into /usr + dobin wmfishtime + doman wmfishtime.1 + dodoc ALL_I_GET_IS_A_GRAY_BOX CODING INSTALL README AUTHORS COPYING +} |