diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-mail/qmail-qfilter | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-mail/qmail-qfilter')
-rw-r--r-- | net-mail/qmail-qfilter/Manifest | 1 | ||||
-rw-r--r-- | net-mail/qmail-qfilter/metadata.xml | 10 | ||||
-rw-r--r-- | net-mail/qmail-qfilter/qmail-qfilter-2.1-r1.ebuild | 42 | ||||
-rw-r--r-- | net-mail/qmail-qfilter/qmail-qfilter-2.1.ebuild | 41 |
4 files changed, 94 insertions, 0 deletions
diff --git a/net-mail/qmail-qfilter/Manifest b/net-mail/qmail-qfilter/Manifest new file mode 100644 index 000000000000..d21e1e1ebb2e --- /dev/null +++ b/net-mail/qmail-qfilter/Manifest @@ -0,0 +1 @@ +DIST qmail-qfilter-2.1.tar.gz 22242 RMD160 4336fef69e7f5216d11b4ee71110b7c9504d3970 SHA1 5ac595a9b6f7c14efa1bca3621fa16abfc382fc0 SHA256 67d7f6d92eb034b1696ceb1672114c871dde06618c33dfc7f83e3a6667034468 diff --git a/net-mail/qmail-qfilter/metadata.xml b/net-mail/qmail-qfilter/metadata.xml new file mode 100644 index 000000000000..ee198f063095 --- /dev/null +++ b/net-mail/qmail-qfilter/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>qmail</herd> +<longdescription lang="en"> +This program allows the body and/or envelope of a message to be filtered +through a series of filters before being passed to the real qmail-queue +program, and injected into the qmail queue. +</longdescription> +</pkgmetadata> diff --git a/net-mail/qmail-qfilter/qmail-qfilter-2.1-r1.ebuild b/net-mail/qmail-qfilter/qmail-qfilter-2.1-r1.ebuild new file mode 100644 index 000000000000..65f11070bbea --- /dev/null +++ b/net-mail/qmail-qfilter/qmail-qfilter-2.1-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="2" + +inherit toolchain-funcs multilib + +DESCRIPTION="qmail-queue multi-filter front end" +SRC_URI="http://untroubled.org/qmail-qfilter/archive/${P}.tar.gz" +HOMEPAGE="http://untroubled.org/qmail-qfilter/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND=">=dev-libs/bglibs-1.106" +RDEPEND="${DEPEND} virtual/qmail" + +QMAIL_BINDIR="/var/qmail/bin/" + +src_configure() { + echo "$(tc-getCC) ${CFLAGS}" > conf-cc + echo "$(tc-getCC) ${LDFLAGS}" > conf-ld + echo "${D}${QMAIL_BINDIR}" > conf-bin + echo "${D}/usr/share/man/" > conf-man + echo "/usr/include/bglibs" > conf-bgincs + echo "/usr/$(get_libdir)/bglibs" > conf-bglibs +} + +src_install () { + dodir ${QMAIL_BINDIR} /usr/share/man/ + emake install || die "Installer failed" + dodoc ANNOUNCEMENT NEWS README TODO + docinto samples + dodoc samples/* +} + +pkg_postinst() { + elog "Please see /usr/share/doc/${PF}/README* for configuration information" +} diff --git a/net-mail/qmail-qfilter/qmail-qfilter-2.1.ebuild b/net-mail/qmail-qfilter/qmail-qfilter-2.1.ebuild new file mode 100644 index 000000000000..d5482fd46b14 --- /dev/null +++ b/net-mail/qmail-qfilter/qmail-qfilter-2.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit toolchain-funcs + +DESCRIPTION="qmail-queue multi-filter front end" +SRC_URI="http://untroubled.org/qmail-qfilter/archive/${P}.tar.gz" +HOMEPAGE="http://untroubled.org/qmail-qfilter/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="amd64 ppc sparc x86" +IUSE="" + +DEPEND=">=dev-libs/bglibs-1.0.19" +RDEPEND="${DEPEND} virtual/qmail" + +QMAIL_BINDIR="/var/qmail/bin/" + +src_compile() { + echo "$(tc-getCC) ${CFLAGS}" > conf-cc + echo "$(tc-getCC) ${LDFLAGS}" > conf-ld + echo "${D}${QMAIL_BINDIR}" > conf-bin + echo "${D}/usr/share/man/" > conf-man + echo "/usr/include/bglibs" > conf-bgincs + echo "/usr/lib/bglibs" > conf-bglibs + make || die +} + +src_install () { + dodir ${QMAIL_BINDIR} /usr/share/man/ + emake install || die "Installer failed" + dodoc ANNOUNCEMENT NEWS README TODO + docinto samples + dodoc samples/* +} + +pkg_postinst() { + elog "Please see /usr/share/doc/${PF}/README* for configuration information" +} |