diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-10-22 00:37:52 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-10-22 00:37:52 +0000 |
commit | ae270e4c66a4f96192e096c518ba7c879677533e (patch) | |
tree | 808ba171929b59df364ba62ddffa2a44d2db0ee4 /mail-mta/ssmtp/ssmtp-2.61-r30.ebuild | |
parent | Remove monolithic X from dependencies, add die messages and fix quotes. (diff) | |
download | historical-ae270e4c66a4f96192e096c518ba7c879677533e.tar.gz historical-ae270e4c66a4f96192e096c518ba7c879677533e.tar.bz2 historical-ae270e4c66a4f96192e096c518ba7c879677533e.zip |
Modified Makefile to respect LDFLAGS, bug #152197 by Fabian Groffen <grobian at gentoo.org>. Removed old ebuilds.
Package-Manager: portage-2.1.2_pre3-r2
Diffstat (limited to 'mail-mta/ssmtp/ssmtp-2.61-r30.ebuild')
-rw-r--r-- | mail-mta/ssmtp/ssmtp-2.61-r30.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail-mta/ssmtp/ssmtp-2.61-r30.ebuild b/mail-mta/ssmtp/ssmtp-2.61-r30.ebuild index c72167c96e25..de6b1d2e4790 100644 --- a/mail-mta/ssmtp/ssmtp-2.61-r30.ebuild +++ b/mail-mta/ssmtp/ssmtp-2.61-r30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/ssmtp/ssmtp-2.61-r30.ebuild,v 1.2 2006/10/17 10:53:06 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/ssmtp/ssmtp-2.61-r30.ebuild,v 1.3 2006/10/22 00:37:52 ticho Exp $ inherit eutils mailer @@ -17,6 +17,9 @@ DEPEND="virtual/libc ssl? ( dev-libs/openssl )" src_compile() { + # Respect LDFLAGS (bug #152197) + sed -i -e 's:$(CC) -o:$(CC) @LDFLAGS@ -o:' Makefile.in + econf \ --sysconfdir=/etc/ssmtp \ $(use_enable ssl) \ |