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 | 7afe634c77bdfe2a69c65a5abec56bcd10a3d91a (patch) | |
tree | c1b8a72813c5ae23f8359b785113b0e6200be9a3 /www-misc/multisort | |
parent | added mod_scgi with the rigth version string (diff) | |
download | historical-7afe634c77bdfe2a69c65a5abec56bcd10a3d91a.tar.gz historical-7afe634c77bdfe2a69c65a5abec56bcd10a3d91a.tar.bz2 historical-7afe634c77bdfe2a69c65a5abec56bcd10a3d91a.zip |
Initial revision of multisort
Diffstat (limited to 'www-misc/multisort')
-rw-r--r-- | www-misc/multisort/ChangeLog | 10 | ||||
-rw-r--r-- | www-misc/multisort/Manifest | 14 | ||||
-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, 58 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..1e8915e5798e --- /dev/null +++ b/www-misc/multisort/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 41d6c0ba999d7b4af929e07368693a3f metadata.xml 261 +MD5 2db7f4b4b7d5b07d56444a71f110abc4 ChangeLog 349 +MD5 950eec6495ed387b07974848dbaf71f3 multisort-1.1.ebuild 598 +MD5 50002a73925a21345657c36633755b5d files/digest-multisort-1.1 63 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.0 (GNU/Linux) + +iD8DBQFB8heImPFBzbX68WERAnawAKCAzThjSIkXBJBjrbewGc3zwkgpcgCeKfiy +b3DOUZ0Z7C1HhHYNOaV/D2U= +=I/O2 +-----END PGP SIGNATURE----- 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 +} |