diff options
author | Eray Aslan <eras@gentoo.org> | 2011-07-25 14:48:06 +0000 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2011-07-25 14:48:06 +0000 |
commit | 73fc25f3ae54cdc5a4d481d237280accc4d14530 (patch) | |
tree | 46b4a6008fed906362d03ba8a75354b2be374d43 /net-mail/poppassd_ceti | |
parent | ppc/ppc64 stable wrt #373889 (diff) | |
download | gentoo-2-73fc25f3ae54cdc5a4d481d237280accc4d14530.tar.gz gentoo-2-73fc25f3ae54cdc5a4d481d237280accc4d14530.tar.bz2 gentoo-2-73fc25f3ae54cdc5a4d481d237280accc4d14530.zip |
respect LDFLAGS - bug #335173
(Portage version: 2.1.10.7/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/poppassd_ceti')
-rw-r--r-- | net-mail/poppassd_ceti/ChangeLog | 5 | ||||
-rw-r--r-- | net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r2.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-mail/poppassd_ceti/ChangeLog b/net-mail/poppassd_ceti/ChangeLog index 0512cf7f1b33..cf35a9a1b932 100644 --- a/net-mail/poppassd_ceti/ChangeLog +++ b/net-mail/poppassd_ceti/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-mail/poppassd_ceti # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/poppassd_ceti/ChangeLog,v 1.12 2011/07/20 16:00:54 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/poppassd_ceti/ChangeLog,v 1.13 2011/07/25 14:48:06 eras Exp $ + + 25 Jul 2011; Eray Aslan <eras@gentoo.org> poppassd_ceti-1.8.5-r2.ebuild: + respect LDFLAGS - bug #335173 20 Jul 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop maintainer due retirement, bug #70723 diff --git a/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r2.ebuild b/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r2.ebuild index b4b6ce397ad3..8c41b7bf1986 100644 --- a/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r2.ebuild +++ b/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r2.ebuild,v 1.2 2009/08/03 18:08:36 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/poppassd_ceti/poppassd_ceti-1.8.5-r2.ebuild,v 1.3 2011/07/25 14:48:06 eras Exp $ inherit eutils toolchain-funcs pam portability @@ -24,7 +24,7 @@ RDEPEND="${DEPEND} src_compile() { $(tc-getCC) -c ${CFLAGS} ${MY_PN}.c || die "Compile failed." - $(tc-getCC) -o poppassd ${MY_PN}.o -lpam $(dlopen_lib) || die "Linking failed." + $(tc-getCC) ${LDFLAGS} -o poppassd ${MY_PN}.o -lpam $(dlopen_lib) || die "Linking failed." } src_install() { @@ -33,7 +33,7 @@ src_install() { pamd_mimic_system poppassd auth account password insinto /etc/xinetd.d - newins ${FILESDIR}/poppassd.xinetd poppassd + newins "${FILESDIR}"/poppassd.xinetd poppassd insinto /usr/sbin insopts -o root -g bin -m 500 |