Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
hwoarang 09/11/10 13:53:36
Modified: ChangeLog
Added: adns-1.4-r1.ebuild
Log:
Fix cname issue ( bug #292545 ). EAPI2fy it
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Revision Changes Path
1.35 net-libs/adns/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/ChangeLog?r1=1.34&r2=1.35
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/adns/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog 23 Aug 2009 01:54:43 -0000 1.34
+++ ChangeLog 10 Nov 2009 13:53:36 -0000 1.35
@@ -1,6 +1,13 @@
# ChangeLog for net-libs/adns
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/adns/ChangeLog,v 1.34 2009/08/23 01:54:43 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/adns/ChangeLog,v 1.35 2009/11/10 13:53:36 hwoarang Exp $
+
+*adns-1.4-r1 (10 Nov 2009)
+
+ 10 Nov 2009; Markos Chandras <hwoarang@g.o> +adns-1.4-r1.ebuild,
+ +files/adns-1.4-cnamechain.patch:
+ Fix cname issue ( bug #292545 ). EAPI2fy it. Thanks to Alex Efros <powerman-asdf@...>
+ for the attached patch.
23 Aug 2009; Jeremy Olexa <darkside@g.o> -files/1.1-gcc34.patch,
-files/adns-gcc34.patch:
1.1 net-libs/adns/adns-1.4-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/adns-1.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/adns/adns-1.4-r1.ebuild?rev=1.1&content-type=text/plain
Index: adns-1.4-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/adns/adns-1.4-r1.ebuild,v 1.1 2009/11/10 13:53:36 hwoarang Exp $
EAPI="2"
inherit eutils multilib toolchain-funcs
DESCRIPTION="Advanced, easy to use, asynchronous-capable DNS client library and utilities"
HOMEPAGE="http://www.chiark.greenend.org.uk/~ian/adns/"
SRC_URI="ftp://ftp.chiark.greenend.org.uk/users/ian/adns/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE=""
DEPEND=""
RDEPEND=""
src_prepare() {
epatch "${FILESDIR}"/${P}-cnamechain.patch
}
src_configure() {
CC=$(tc-getCC) econf || die "econf failed"
}
src_compile() {
emake AR=$(tc-getAR) RANLIB=$(tc-getRANLIB) || die "emake failed"
}
src_install () {
dodir /usr/{include,bin,$(get_libdir)}
emake prefix="${D}"/usr libdir="${D}"/usr/$(get_libdir) install || die "emake install failed"
dodoc README TODO changelog "${FILESDIR}"/README.security
dohtml *.html
}
pkg_postinst() {
ewarn "$(<${FILESDIR}/README.security)"
}
|
|