diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2005-08-05 19:55:27 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2005-08-05 19:55:27 +0000 |
commit | a1d814cd96677ada668387496a5ad477ffe735f9 (patch) | |
tree | 4a42a51a179b61eceb6d1ca39903c155c889232f /sys-apps | |
parent | Fixed inheritence structure. 10.3 and 10.4 are now nicely split. (diff) | |
download | historical-a1d814cd96677ada668387496a5ad477ffe735f9.tar.gz historical-a1d814cd96677ada668387496a5ad477ffe735f9.tar.bz2 historical-a1d814cd96677ada668387496a5ad477ffe735f9.zip |
initial commit. see bug #71933.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/turbotail/ChangeLog | 10 | ||||
-rw-r--r-- | sys-apps/turbotail/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/turbotail/files/digest-turbotail-0.2 | 1 | ||||
-rw-r--r-- | sys-apps/turbotail/metadata.xml | 5 | ||||
-rw-r--r-- | sys-apps/turbotail/turbotail-0.2.ebuild | 25 |
5 files changed, 45 insertions, 0 deletions
diff --git a/sys-apps/turbotail/ChangeLog b/sys-apps/turbotail/ChangeLog new file mode 100644 index 000000000000..8e40b904ed98 --- /dev/null +++ b/sys-apps/turbotail/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sys-apps/turbotail +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/turbotail/ChangeLog,v 1.1 2005/08/05 19:55:26 sbriesen Exp $ + +*turbotail-0.2 (05 Aug 2005) + + 05 Aug 2005; Stefan Briesenick <sbriesen@gentoo.org> +metadata.xml, + +turbotail-0.2.ebuild: + initial commit. see bug #71933. + diff --git a/sys-apps/turbotail/Manifest b/sys-apps/turbotail/Manifest new file mode 100644 index 000000000000..4f02118f0a14 --- /dev/null +++ b/sys-apps/turbotail/Manifest @@ -0,0 +1,4 @@ +MD5 a4910a43fa16a8d661313d01563f2f91 turbotail-0.2.ebuild 679 +MD5 ae27317546fb91e2f8a87c35bf929030 ChangeLog 371 +MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 +MD5 92a0255cbb3e1575323119175be61a46 files/digest-turbotail-0.2 60 diff --git a/sys-apps/turbotail/files/digest-turbotail-0.2 b/sys-apps/turbotail/files/digest-turbotail-0.2 new file mode 100644 index 000000000000..45c55b7c1488 --- /dev/null +++ b/sys-apps/turbotail/files/digest-turbotail-0.2 @@ -0,0 +1 @@ +MD5 24903c65622391e62f238218cfc5c2d7 turbotail-0.2.tgz 6411 diff --git a/sys-apps/turbotail/metadata.xml b/sys-apps/turbotail/metadata.xml new file mode 100644 index 000000000000..96a2d586367d --- /dev/null +++ b/sys-apps/turbotail/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>base-system</herd> +</pkgmetadata> diff --git a/sys-apps/turbotail/turbotail-0.2.ebuild b/sys-apps/turbotail/turbotail-0.2.ebuild new file mode 100644 index 000000000000..48a507f6790d --- /dev/null +++ b/sys-apps/turbotail/turbotail-0.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2005 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.1 2005/08/05 19:55:26 sbriesen Exp $ + +inherit eutils + +DESCRIPTION="drop-in replacement for 'tail' which uses the kernel DNOTIFY-api" +HOMEPAGE="http://www.vanheusden.com/Linux/" +SRC_URI="http://www.vanheusden.com/Linux/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +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 +} |