diff options
author | Jeroen Roovers <jer@gentoo.org> | 2008-12-15 21:24:05 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2008-12-15 21:24:05 +0000 |
commit | 010d7f2089a4dc5b86076910af212fff161ba1fa (patch) | |
tree | fe5756f8533c80b82fe2777d6c11231794d0775d /sys-apps/turbotail | |
parent | Works fine with app-admin/fam too. Add some verbosity to src_compile(). (diff) | |
download | gentoo-2-010d7f2089a4dc5b86076910af212fff161ba1fa.tar.gz gentoo-2-010d7f2089a4dc5b86076910af212fff161ba1fa.tar.bz2 gentoo-2-010d7f2089a4dc5b86076910af212fff161ba1fa.zip |
Remove old.
(Portage version: 2.2_rc17/cvs/Linux 2.6.25-gentoo-r7-JeR i686)
Diffstat (limited to 'sys-apps/turbotail')
-rw-r--r-- | sys-apps/turbotail/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/turbotail/files/turbotail-0.2-munmap.patch | 11 | ||||
-rw-r--r-- | sys-apps/turbotail/turbotail-0.2-r1.ebuild | 32 | ||||
-rw-r--r-- | sys-apps/turbotail/turbotail-0.2.ebuild | 25 |
4 files changed, 6 insertions, 69 deletions
diff --git a/sys-apps/turbotail/ChangeLog b/sys-apps/turbotail/ChangeLog index 1979914e8958..224a48da0e71 100644 --- a/sys-apps/turbotail/ChangeLog +++ b/sys-apps/turbotail/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/turbotail # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/turbotail/ChangeLog,v 1.12 2008/12/15 21:18:28 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/turbotail/ChangeLog,v 1.13 2008/12/15 21:24:05 jer Exp $ + + 15 Dec 2008; Jeroen Roovers <jer@gentoo.org> + -files/turbotail-0.2-munmap.patch, -turbotail-0.2.ebuild, + -turbotail-0.2-r1.ebuild: + Remove old. 15 Dec 2008; Jeroen Roovers <jer@gentoo.org> turbotail-0.3.ebuild: Works fine with app-admin/fam too. Add some verbosity to src_compile(). diff --git a/sys-apps/turbotail/files/turbotail-0.2-munmap.patch b/sys-apps/turbotail/files/turbotail-0.2-munmap.patch deleted file mode 100644 index 39110d2a8d71..000000000000 --- a/sys-apps/turbotail/files/turbotail-0.2-munmap.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- turbotail.c.orig 2004-08-17 22:21:51.000000000 +0200 -+++ turbotail.c 2005-08-08 04:18:09.000000000 +0200 -@@ -355,7 +355,7 @@ - return -1; - } - -- if (munmap(mmap_addr, finfo.st_size) == -1) -+ if ((finfo.st_size > 0) && (munmap(mmap_addr, finfo.st_size) == -1)) - { - error("munmap failed\n"); - return -1; diff --git a/sys-apps/turbotail/turbotail-0.2-r1.ebuild b/sys-apps/turbotail/turbotail-0.2-r1.ebuild deleted file mode 100644 index 4415805e091f..000000000000 --- a/sys-apps/turbotail/turbotail-0.2-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/turbotail/turbotail-0.2-r1.ebuild,v 1.3 2008/05/25 18:34:24 jer Exp $ - -inherit eutils - -DESCRIPTION="drop-in replacement for 'tail' which uses the kernel DNOTIFY-api" -HOMEPAGE="http://www.vanheusden.com/turbotail/" -SRC_URI="http://www.vanheusden.com/Linux/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~x86" -IUSE="" -DEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - # apply munmap patch (see bug #101694) - epatch "${FILESDIR}/${P}-munmap.patch" -} - -src_compile() { - # enforce our CFLAGS - emake CFLAGS="-Wall ${CFLAGS} -DVERSION=\"${VERSION}\"" || die "emake failed" -} - -src_install() { - dobin turbotail || die "install failed" - dodoc readme.txt -} diff --git a/sys-apps/turbotail/turbotail-0.2.ebuild b/sys-apps/turbotail/turbotail-0.2.ebuild deleted file mode 100644 index 46b0961fc087..000000000000 --- a/sys-apps/turbotail/turbotail-0.2.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/turbotail/turbotail-0.2.ebuild,v 1.3 2008/05/25 18:26:37 jer Exp $ - -inherit eutils - -DESCRIPTION="drop-in replacement for 'tail' which uses the kernel DNOTIFY-api" -HOMEPAGE="http://www.vanheusden.com/turbotail/" -SRC_URI="http://www.vanheusden.com/Linux/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" -DEPEND="" - -src_compile() { - # enforce our CFLAGS - emake CFLAGS="-Wall ${CFLAGS} -DVERSION=\"${VERSION}\"" || die "emake failed" -} - -src_install() { - dobin turbotail || die "install failed" - dodoc readme.txt -} |