diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-05 06:48:36 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-05 06:48:36 +0000 |
commit | ae904f19068e20e6c75d39cb4ed700a2d20a0819 (patch) | |
tree | 216e1c0254ae1527c84b3d911a64edf59fccacb0 /net-mail/qmail-lint | |
parent | initial commit (diff) | |
download | gentoo-2-ae904f19068e20e6c75d39cb4ed700a2d20a0819.tar.gz gentoo-2-ae904f19068e20e6c75d39cb4ed700a2d20a0819.tar.bz2 gentoo-2-ae904f19068e20e6c75d39cb4ed700a2d20a0819.zip |
initial commit
Diffstat (limited to 'net-mail/qmail-lint')
-rw-r--r-- | net-mail/qmail-lint/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/qmail-lint/Manifest | 4 | ||||
-rw-r--r-- | net-mail/qmail-lint/files/digest-qmail-lint-0.55 | 1 | ||||
-rw-r--r-- | net-mail/qmail-lint/metadata.xml | 12 | ||||
-rw-r--r-- | net-mail/qmail-lint/qmail-lint-0.55.ebuild | 26 |
5 files changed, 51 insertions, 2 deletions
diff --git a/net-mail/qmail-lint/ChangeLog b/net-mail/qmail-lint/ChangeLog new file mode 100644 index 000000000000..0e60100cdd94 --- /dev/null +++ b/net-mail/qmail-lint/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-mail/qmail-lint +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-lint/ChangeLog,v 1.1 2003/08/05 06:48:33 robbat2 Exp $ + +*qmail-lint-0.55 (04 Aug 2003) + + 04 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> metadata.xml, + qmail-lint-0.55.ebuild: + Initial Commit + diff --git a/net-mail/qmail-lint/Manifest b/net-mail/qmail-lint/Manifest index 365da7cb0aea..b6227cd81a81 100644 --- a/net-mail/qmail-lint/Manifest +++ b/net-mail/qmail-lint/Manifest @@ -1,4 +1,4 @@ -MD5 eec50a327949e72c6208bc8675a63e24 qmail-lint-0.55.ebuild 658 -MD5 5f3c6d4b046e6dba7c7f3a36f65de2d4 ChangeLog 377 +MD5 6a20c9bbcddc508077afdd0d04afcdb4 qmail-lint-0.55.ebuild 652 +MD5 965df4d50dee964614cdec7c75a03253 ChangeLog 364 MD5 f914360bf06cc501287e976d6539d64b metadata.xml 453 MD5 fc259a5b8c23b114470cb36b0e321c29 files/digest-qmail-lint-0.55 59 diff --git a/net-mail/qmail-lint/files/digest-qmail-lint-0.55 b/net-mail/qmail-lint/files/digest-qmail-lint-0.55 new file mode 100644 index 000000000000..2c313f22c013 --- /dev/null +++ b/net-mail/qmail-lint/files/digest-qmail-lint-0.55 @@ -0,0 +1 @@ +MD5 b7e97b41a5096e3e66e71a56018fba09 qmail-lint-0.55 13531 diff --git a/net-mail/qmail-lint/metadata.xml b/net-mail/qmail-lint/metadata.xml new file mode 100644 index 000000000000..01fbf0cf92eb --- /dev/null +++ b/net-mail/qmail-lint/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-mail</herd> +<maintainer> + <email>robbat2@gentoo.org</email> + <name>Robin H. Johnson</name> + <description>Primary Maintainer</description> +</maintainer> +<longdescription>qmail-lint checks your qmail configuration for common + problems. Prints warning or error messages to stdout. </longdescription> +</pkgmetadata> diff --git a/net-mail/qmail-lint/qmail-lint-0.55.ebuild b/net-mail/qmail-lint/qmail-lint-0.55.ebuild new file mode 100644 index 000000000000..2289af9084c9 --- /dev/null +++ b/net-mail/qmail-lint/qmail-lint-0.55.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-lint/qmail-lint-0.55.ebuild,v 1.1 2003/08/05 06:48:33 robbat2 Exp $ +DESCRIPTION="qmail-lint checks your qmail configuration for common problems" +HOMEPAGE="http://www.qmail.org/" +SRC_URI="mirror://qmail/${P}" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" +# Should run on all platforms without issue +IUSE="" +DEPEND="" +RDEPEND="net-mail/qmail dev-lang/perl" +S=${WORKDIR} + +src_unpack() { + cp ${DISTDIR}/${P} ${PN} +} + +src_compile() { + einfo "Nothing to compile" +} + +src_install() { + dobin ${PN} +} |