diff options
author | 2010-03-30 01:03:17 +0000 | |
---|---|---|
committer | 2010-03-30 01:03:17 +0000 | |
commit | 3efbd68159fa2af39249fbe5caac18de0b9d2d2c (patch) | |
tree | 58131a948c4c44d1202af7ab575f0c6e249b9302 /net-dns | |
parent | Move to git repo for 1.9+ versions (diff) | |
download | gentoo-2-3efbd68159fa2af39249fbe5caac18de0b9d2d2c.tar.gz gentoo-2-3efbd68159fa2af39249fbe5caac18de0b9d2d2c.tar.bz2 gentoo-2-3efbd68159fa2af39249fbe5caac18de0b9d2d2c.zip |
Respect LDFLAGS thanks to Doktor Notor (bug #263135).
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/idnkit/ChangeLog | 10 | ||||
-rw-r--r-- | net-dns/idnkit/files/idnkit-1.0-autotools.patch | 64 | ||||
-rw-r--r-- | net-dns/idnkit/idnkit-1.0-r1.ebuild | 34 |
3 files changed, 106 insertions, 2 deletions
diff --git a/net-dns/idnkit/ChangeLog b/net-dns/idnkit/ChangeLog index f85732521251..af7810824c11 100644 --- a/net-dns/idnkit/ChangeLog +++ b/net-dns/idnkit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-dns/idnkit -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/ChangeLog,v 1.21 2008/07/10 20:11:26 jer Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/ChangeLog,v 1.22 2010/03/30 01:03:17 jer Exp $ + +*idnkit-1.0-r1 (30 Mar 2010) + + 30 Mar 2010; Jeroen Roovers <jer@gentoo.org> +idnkit-1.0-r1.ebuild, + +files/idnkit-1.0-autotools.patch: + Respect LDFLAGS thanks to Doktor Notor (bug #263135). 10 Jul 2008; Jeroen Roovers <jer@gentoo.org> idnkit-1.0.ebuild: ChangeLog, not Changelog. diff --git a/net-dns/idnkit/files/idnkit-1.0-autotools.patch b/net-dns/idnkit/files/idnkit-1.0-autotools.patch new file mode 100644 index 000000000000..728829c60e38 --- /dev/null +++ b/net-dns/idnkit/files/idnkit-1.0-autotools.patch @@ -0,0 +1,64 @@ +--- configure.in.orig 2003-03-11 00:53:20.000000000 +0100 ++++ configure.in 2010-03-12 14:15:24.000000000 +0100 +@@ -629,6 +629,41 @@ + fi + fi + ++AC_DEFUN(AC_FIND_SYSTEM_SHOBJ,[ ++AC_MSG_CHECKING(for $1 shared object) ++shobj_name=$1 ++shobj_path= ++case "$host" in ++*-hpux*) ++ SOEXT=sl ++ ;; ++*) ++ SOEXT=so ++ ;; ++esac ++for shobj_libdir in /lib /usr/lib; do ++ if test -f $shobj_libdir/$shobj_name.$SOEXT; then ++ shobj_path=$shobj_libdir/$shobj_name.$SOEXT ++ else ++ shobj_path=`ls -r $shobj_libdir/$shobj_name.$SOEXT* 2>/dev/null | head -1` ++ if test "$shobj_path" != "" -a -f "$shobj_path"; then ++ : ++ else ++ shobj_path= ++ fi ++ fi ++ if test "$shobj_path" != ""; then ++ AC_MSG_RESULT($shobj_path) ++ shobj_pathsymbol=SOPATH_`echo $shobj_name | sed 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` ++ AC_DEFINE_UNQUOTED($shobj_pathsymbol, "$shobj_path") ++ break ++ fi ++done ++if test "$shobj_path" = ""; then ++ AC_MSG_RESULT(no) ++fi ++])dnl ++ + dnl Find system shared object paths. + AC_FIND_SYSTEM_SHOBJ(libc) + if test "$install_runidn" = yes ; then +--- lib/Makefile.in.orig 2003-03-12 17:14:41.000000000 +0100 ++++ lib/Makefile.in 2010-03-12 15:54:35.000000000 +0100 +@@ -241,7 +241,7 @@ + + install-common: + $(MKINSTALLDIRS) $(DESTDIR)$(libdir) +- $(LIBTOOL) $(INSTALL_DATA) $(LITELIB).la \ ++ $(LIBTOOL) --mode=install $(INSTALL_DATA) $(LITELIB).la \ + $(DESTDIR)$(libdir)/$(LITELIB).la + -[ -f $(DESTDIR)$(libdir)/$(LITELIB).a ] \ + && $(RANLIB) $(DESTDIR)$(libdir)/$(LITELIB).a +@@ -262,7 +262,7 @@ + + install-nolite: + $(MKINSTALLDIRS) $(DESTDIR)$(libdir) +- $(LIBTOOL) $(INSTALL_DATA) $(LIB).la \ ++ $(LIBTOOL) --mode=install $(INSTALL_DATA) $(LIB).la \ + $(DESTDIR)$(libdir)/$(LIB).la + -[ -f $(DESTDIR)$(libdir)/$(LIB).a ] \ + && $(RANLIB) $(DESTDIR)$(libdir)/$(LIB).a diff --git a/net-dns/idnkit/idnkit-1.0-r1.ebuild b/net-dns/idnkit/idnkit-1.0-r1.ebuild new file mode 100644 index 000000000000..d569ac393388 --- /dev/null +++ b/net-dns/idnkit/idnkit-1.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/idnkit-1.0-r1.ebuild,v 1.1 2010/03/30 01:03:17 jer Exp $ + +EAPI="2" + +inherit autotools eutils fixheadtails + +DESCRIPTION="Toolkit for Internationalized Domain Names (IDN)" +HOMEPAGE="http://www.nic.ad.jp/ja/idn/idnkit/download/" +SRC_URI="http://www.nic.ad.jp/ja/idn/idnkit/download/sources/${P}-src.tar.gz" + +LICENSE="JNIC" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +DEPEND="sys-libs/glibc" +# non gnu systems need libiconv + +S=${WORKDIR}/${P}-src + +src_prepare() { + ht_fix_all + # Bug 263135, old broken libtool bundled + rm -f aclocal.m4 || die "rm failed" + epatch "${FILESDIR}/${P}-autotools.patch" + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc ChangeLog DISTFILES NEWS README README.ja +} |