diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-04-18 12:18:43 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-04-18 19:55:04 +0200 |
commit | a4739023a6623f7ba3b820527e7ef67b4a0efcf3 (patch) | |
tree | ad159ca83bfe403eab5987f97fd924037862a25a /net-dns/idnkit | |
parent | media-sound/ardour: reverted back to stable (diff) | |
download | gentoo-a4739023a6623f7ba3b820527e7ef67b4a0efcf3.tar.gz gentoo-a4739023a6623f7ba3b820527e7ef67b4a0efcf3.tar.bz2 gentoo-a4739023a6623f7ba3b820527e7ef67b4a0efcf3.zip |
net-dns/idnkit: Drop 1.0-r2
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-dns/idnkit')
-rw-r--r-- | net-dns/idnkit/Manifest | 1 | ||||
-rw-r--r-- | net-dns/idnkit/files/idnkit-1.0-autotools.patch | 64 | ||||
-rw-r--r-- | net-dns/idnkit/files/idnkit-1.0-test-subdirs.patch | 10 | ||||
-rw-r--r-- | net-dns/idnkit/idnkit-1.0-r2.ebuild | 42 |
4 files changed, 0 insertions, 117 deletions
diff --git a/net-dns/idnkit/Manifest b/net-dns/idnkit/Manifest index 05f1c89fabbd..addf71709757 100644 --- a/net-dns/idnkit/Manifest +++ b/net-dns/idnkit/Manifest @@ -1,2 +1 @@ -DIST idnkit-1.0-src.tar.gz 432823 BLAKE2B 4e96bed174ea704ec0eb5c6655cb65145ed808b2bf9582ec9b6dcb8606de7a006937a2f8d8fce386dbc328e074b95ca504464c1ed6d16acc7be82d9904f2c2b4 SHA512 74f2db007a1991610f62a7a060d534f724f08395a16a7d76fda0824e9017aa47ffe4e251c90d0481218b70534fcd2b32724a66223042f59c1e16c1ff39f3be19 DIST idnkit-2.3.tar.bz2 1473267 BLAKE2B efc2a93527c217b32bfd0e2546944b30d39c3fa046e17c11f2084721f966dc838bfa821c88378c0604cbeafb8d4970cf3c19122182448d5e48c2d392a42225c6 SHA512 a0cbc111d4b7d5f444c9b79ae76378fd2edf18097adca27d5ebf811e12091f609ec45d2c62a95b1e295bd1fa644bd8a38d79841f7f4e85dcd1f6a1cd5ca622e4 diff --git a/net-dns/idnkit/files/idnkit-1.0-autotools.patch b/net-dns/idnkit/files/idnkit-1.0-autotools.patch deleted file mode 100644 index d0918bc9184a..000000000000 --- a/net-dns/idnkit/files/idnkit-1.0-autotools.patch +++ /dev/null @@ -1,64 +0,0 @@ ---- a/configure.in 2003-03-11 00:53:20.000000000 +0100 -+++ b/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 ---- a/lib/Makefile.in 2003-03-12 17:14:41.000000000 +0100 -+++ b/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/files/idnkit-1.0-test-subdirs.patch b/net-dns/idnkit/files/idnkit-1.0-test-subdirs.patch deleted file mode 100644 index 3e6dcf13b15e..000000000000 --- a/net-dns/idnkit/files/idnkit-1.0-test-subdirs.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/lib/Makefile.in -+++ b/lib/Makefile.in -@@ -296,6 +296,7 @@ - rm -f Makefile - - test check: test-localdir test-subdirs -+test-subdirs: test-localdir - - @LITEONLY_TRUE@test-localdir: $(TESTLITELIB).la $(SAMPLES) - @LITEONLY_FALSE@test-localdir: $(TESTLIB).la $(TESTLITELIB).la $(SAMPLES) diff --git a/net-dns/idnkit/idnkit-1.0-r2.ebuild b/net-dns/idnkit/idnkit-1.0-r2.ebuild deleted file mode 100644 index 318812138e91..000000000000 --- a/net-dns/idnkit/idnkit-1.0-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit autotools epatch - -DESCRIPTION="Toolkit for Internationalized Domain Names (IDN)" -HOMEPAGE="https://www.nic.ad.jp/ja/idn/idnkit/download/" -SRC_URI="https://www.nic.ad.jp/ja/idn/idnkit/download/sources/${P}-src.tar.gz" - -LICENSE="JNIC" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" -IUSE="static-libs" - -DEPEND="virtual/libiconv" - -S=${WORKDIR}/${P}-src - -src_prepare() { - # Bug 263135, old broken libtool bundled - rm -f aclocal.m4 || die "rm failed" - epatch "${FILESDIR}"/${P}-autotools.patch - epatch "${FILESDIR}"/${P}-test-subdirs.patch - mv configure.{in,ac} || die - eautoreconf -} - -src_configure() { - local myconf="" - if has_version dev-libs/libiconv; then - myconf="--with-iconv" - fi - econf $(use_enable static-libs static) ${myconf} -} - -src_install() { - default - use static-libs || find "${ED}" -name 'lib*.la' -delete - dodoc ChangeLog DISTFILES NEWS README README.ja -} |