diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2005-01-22 09:06:35 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2005-01-22 09:06:35 +0000 |
commit | 87ad5c2060b4dcb6dcd3827d20d8145ab39a984c (patch) | |
tree | ccc33af999ff4086568b902c9764c70a315d7df9 | |
parent | added mod_scgi with the rigth version string (diff) | |
download | gentoo-2-87ad5c2060b4dcb6dcd3827d20d8145ab39a984c.tar.gz gentoo-2-87ad5c2060b4dcb6dcd3827d20d8145ab39a984c.tar.bz2 gentoo-2-87ad5c2060b4dcb6dcd3827d20d8145ab39a984c.zip |
Initial revision of multisort
-rw-r--r-- | www-misc/multisort/ChangeLog | 10 | ||||
-rw-r--r-- | www-misc/multisort/Manifest | 4 | ||||
-rw-r--r-- | www-misc/multisort/files/digest-multisort-1.1 | 1 | ||||
-rw-r--r-- | www-misc/multisort/metadata.xml | 9 | ||||
-rw-r--r-- | www-misc/multisort/multisort-1.1.ebuild | 24 |
5 files changed, 48 insertions, 0 deletions
diff --git a/www-misc/multisort/ChangeLog b/www-misc/multisort/ChangeLog new file mode 100644 index 000000000000..a8c6686d52d7 --- /dev/null +++ b/www-misc/multisort/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for www-misc/multisort +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/ChangeLog,v 1.1 2005/01/22 09:06:35 hollow Exp $ + +*multisort-1.1 (22 Jan 2005) + + 22 Jan 2005; Benedikt Boehm <hollow@gentoo.org> +metadata.xml, + +multisort-1.1.ebuild: + Initial revision + diff --git a/www-misc/multisort/Manifest b/www-misc/multisort/Manifest new file mode 100644 index 000000000000..762b45a58477 --- /dev/null +++ b/www-misc/multisort/Manifest @@ -0,0 +1,4 @@ +MD5 41d6c0ba999d7b4af929e07368693a3f metadata.xml 261 +MD5 05422318e95b361ef14922d00f4111dd ChangeLog 259 +MD5 1f5461e30f831e157c38e8c92794e382 multisort-1.1.ebuild 497 +MD5 50002a73925a21345657c36633755b5d files/digest-multisort-1.1 63 diff --git a/www-misc/multisort/files/digest-multisort-1.1 b/www-misc/multisort/files/digest-multisort-1.1 new file mode 100644 index 000000000000..e2498abde10b --- /dev/null +++ b/www-misc/multisort/files/digest-multisort-1.1 @@ -0,0 +1 @@ +MD5 c47f7622773022119e1ea21d2b211bd3 multisort-1.1.tar.gz 3520 diff --git a/www-misc/multisort/metadata.xml b/www-misc/multisort/metadata.xml new file mode 100644 index 000000000000..22bb50eb3661 --- /dev/null +++ b/www-misc/multisort/metadata.xml @@ -0,0 +1,9 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>apache</herd> + <maintainer> + <email>hollow@gentoo.org</email> + <name>Benedikt Boehm</name> + </maintainer> +</pkgmetadata> diff --git a/www-misc/multisort/multisort-1.1.ebuild b/www-misc/multisort/multisort-1.1.ebuild new file mode 100644 index 000000000000..7cad5fa3e525 --- /dev/null +++ b/www-misc/multisort/multisort-1.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/multisort-1.1.ebuild,v 1.1 2005/01/22 09:06:35 hollow Exp $ + +DESCRIPTION="multisort takes any number of httpd logfiles in the Common Log Format and merges them together" +HOMEPAGE="http://www.xach.com/multisort/" +SRC_URI="http://www.xach.com/${PN}/${PN}-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" + +S=${WORKDIR}/${P} + +src_compile() { + make || die "make failed" +} + +src_install() { + dosbin ${S}/multisort +} |