diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2006-10-23 11:11:37 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2006-10-23 11:11:37 +0000 |
commit | 3962e8b2f5b3506eae235a75a1837afd9e32e8d7 (patch) | |
tree | ebe5b5a8637c3314cf912b620ced6d5011130cc4 /net-mail | |
parent | stable on amd64 (diff) | |
download | gentoo-2-3962e8b2f5b3506eae235a75a1837afd9e32e8d7.tar.gz gentoo-2-3962e8b2f5b3506eae235a75a1837afd9e32e8d7.tar.bz2 gentoo-2-3962e8b2f5b3506eae235a75a1837afd9e32e8d7.zip |
First version bump.
(Portage version: 2.1-r2)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/vacation/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/vacation/files/digest-vacation-1.2.6.2 | 3 | ||||
-rw-r--r-- | net-mail/vacation/vacation-1.2.6.1.ebuild | 4 | ||||
-rw-r--r-- | net-mail/vacation/vacation-1.2.6.2.ebuild | 34 |
4 files changed, 47 insertions, 4 deletions
diff --git a/net-mail/vacation/ChangeLog b/net-mail/vacation/ChangeLog index 92f5e7651c7d..cac9732d290d 100644 --- a/net-mail/vacation/ChangeLog +++ b/net-mail/vacation/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-mail/vacation -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/vacation/ChangeLog,v 1.6 2004/11/25 00:12:09 ticho Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/vacation/ChangeLog,v 1.7 2006/10/23 11:11:37 phosphan Exp $ + +*vacation-1.2.6.2 (23 Oct 2006) + + 23 Oct 2006; Patrick Kursawe <phosphan@gentoo.org> + +vacation-1.2.6.2.ebuild: + First version bump. 25 Nov 2004; Andrej Kacian <ticho@gentoo.org> vacation-1.2.6.1.ebuild: Block mail-mta/sendmail, see bug #37462, reported by Jan Schubert diff --git a/net-mail/vacation/files/digest-vacation-1.2.6.2 b/net-mail/vacation/files/digest-vacation-1.2.6.2 new file mode 100644 index 000000000000..45052054bf59 --- /dev/null +++ b/net-mail/vacation/files/digest-vacation-1.2.6.2 @@ -0,0 +1,3 @@ +MD5 0b44e575b75dfa5039444daaf8ff49a4 vacation-1.2.6.2.tar.gz 51241 +RMD160 24ea19393434eb1273d2bfb32724ec5b59dbcb30 vacation-1.2.6.2.tar.gz 51241 +SHA256 73b03056d5c2c4c854d057f93cf7a4e6db065a3c40d5ffc16480b53e3ca344ca vacation-1.2.6.2.tar.gz 51241 diff --git a/net-mail/vacation/vacation-1.2.6.1.ebuild b/net-mail/vacation/vacation-1.2.6.1.ebuild index a4008b1c74ec..2fa9c787f056 100644 --- a/net-mail/vacation/vacation-1.2.6.1.ebuild +++ b/net-mail/vacation/vacation-1.2.6.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/vacation/vacation-1.2.6.1.ebuild,v 1.8 2005/07/09 15:53:14 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/vacation/vacation-1.2.6.1.ebuild,v 1.9 2006/10/23 11:11:37 phosphan Exp $ DESCRIPTION="automatic mail answering program" HOMEPAGE="http://vacation.sourceforge.net/" diff --git a/net-mail/vacation/vacation-1.2.6.2.ebuild b/net-mail/vacation/vacation-1.2.6.2.ebuild new file mode 100644 index 000000000000..6617474e8c0d --- /dev/null +++ b/net-mail/vacation/vacation-1.2.6.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/vacation/vacation-1.2.6.2.ebuild,v 1.1 2006/10/23 11:11:37 phosphan Exp $ + +DESCRIPTION="automatic mail answering program" +HOMEPAGE="http://vacation.sourceforge.net/" +SRC_URI="mirror://sourceforge/vacation/${P}.tar.gz" +LICENSE="GPL-2" +KEYWORDS="~x86 ~alpha ~amd64" +SLOT="0" +IUSE="" + +RDEPEND="virtual/mta + sys-libs/gdbm" +DEPEND="${RDEPEND} + >=sys-apps/sed-4 + !mail-mta/sendmail" + +src_unpack () { + unpack ${A} + cd ${S} + mv vacation.man vacation.1 + sed -i -e 's: -m486::; s:CFLAGS.*= \(.*\):CFLAGS += \1:' Makefile +} + +src_compile () { + emake CFLAGS="${CFLAGS}" || die "emake failed." +} + +src_install () { + dobin vacation + dodoc AUTHORS ChangeLog README README.smrsh + doman vacation.1 +} |