mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-26 16:11:56 +02:00
net-misc/whois: Sync with Gentoo
It's from Gentoo commit 420b11280ed4ba1382f3a91ed29d9c81779b968b.
This commit is contained in:
parent
ff66fc9d79
commit
623f2a5dc8
@ -1,3 +1 @@
|
||||
DIST whois_5.5.14.tar.xz 87480 BLAKE2B 868c9dc968581535ee2b56a6293f634e2c8dc6c00703a45d4ca4f0ce6769786ee4921bd66f3a470b2a7f31808db2971b284c23b76b608bff1edbb7bbe37f892a SHA512 f190d488d7bd68717c0a83ca85709fad09c33b619c46d7e0dd12e79621fdba56b9d43480c25ef3c9df2f6ade0ee72d692bfc5d0bd96839ef92194004313d1cc6
|
||||
DIST whois_5.5.16.tar.xz 90516 BLAKE2B c3d34dd392c2d7968c5c9b7bcce07d144dc3d7dcea15f1578de2114dc34325a9d01754d922b7a83edd799101c816c254b7a79e78feeb8a115c40f41ac1e01f4c SHA512 302a88edad11fee38b4d16b78af38701938d8d875e5ef22b9f40147717f9edda5abc5b791638bb2a3534214938a598faeeae5001275e751d480f95761b6bff14
|
||||
DIST whois_5.5.17.tar.xz 90608 BLAKE2B 82793097e421d88130d089fc64bb0bceac0c9170b39388262b45d2bf62fc2f8b7c4e393fc5351bba6be303ced00a00af1972bf73c1c8c7c86c812b19a0a6fb5a SHA512 0ed33edc2005eb51a88bda505cc3f6ebe3966095d6f12c03cfe62c12e7e575e1d008632d12de6f27b4c09b91ce5a45705d57acce88409e573bbd7b5132df7fc6
|
||||
|
@ -1,81 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
MY_P=${P/-/_}
|
||||
DESCRIPTION="Improved Whois Client"
|
||||
HOMEPAGE="https://github.com/rfc1036/whois"
|
||||
|
||||
if [[ ${PV} == *9999 ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/rfc1036/whois.git"
|
||||
else
|
||||
SRC_URI="mirror://debian/pool/main/w/whois/${MY_P}.tar.xz"
|
||||
#SRC_URI="https://github.com/rfc1036/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}"/${PN}
|
||||
|
||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="iconv idn nls xcrypt"
|
||||
|
||||
RDEPEND="
|
||||
iconv? ( virtual/libiconv )
|
||||
idn? ( net-dns/libidn2:= )
|
||||
nls? ( virtual/libintl )
|
||||
xcrypt? ( >=sys-libs/libxcrypt-4.1:= )
|
||||
!xcrypt? ( virtual/libcrypt:= )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
app-arch/xz-utils
|
||||
>=dev-lang/perl-5
|
||||
virtual/pkgconfig
|
||||
nls? ( sys-devel/gettext )"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-4.7.2-config-file.patch
|
||||
"${FILESDIR}"/${PN}-5.3.0-libidn_automagic.patch
|
||||
"${FILESDIR}"/${PN}-5.5.6-libxcrypt_automagic.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
if use nls ; then
|
||||
sed -i -e 's:#\(.*pos\):\1:' Makefile || die
|
||||
else
|
||||
sed -i -e '/ENABLE_NLS/s:define:undef:' config.h || die
|
||||
|
||||
# don't generate po files when nls is disabled (bug #419889)
|
||||
sed -i -e '/^all:/s/ pos//' \
|
||||
-e '/^install:/s/ install-pos//' Makefile || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() { :; } # expected no-op
|
||||
|
||||
src_compile() {
|
||||
unset HAVE_ICONV HAVE_LIBIDN
|
||||
|
||||
use iconv && export HAVE_ICONV=1
|
||||
use idn && export HAVE_LIBIDN=1
|
||||
use xcrypt && export HAVE_XCRYPT=1
|
||||
|
||||
tc-export CC
|
||||
|
||||
emake CFLAGS="${CFLAGS} ${CPPFLAGS}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake BASEDIR="${ED}" prefix=/usr install
|
||||
|
||||
insinto /etc
|
||||
doins whois.conf
|
||||
dodoc README debian/changelog
|
||||
}
|
@ -1,81 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
MY_P=${P/-/_}
|
||||
DESCRIPTION="Improved Whois Client"
|
||||
HOMEPAGE="https://github.com/rfc1036/whois"
|
||||
|
||||
if [[ ${PV} == *9999 ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/rfc1036/whois.git"
|
||||
else
|
||||
SRC_URI="mirror://debian/pool/main/w/whois/${MY_P}.tar.xz"
|
||||
#SRC_URI="https://github.com/rfc1036/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
#S="${WORKDIR}"/${PN}
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="iconv idn nls xcrypt"
|
||||
|
||||
RDEPEND="
|
||||
iconv? ( virtual/libiconv )
|
||||
idn? ( net-dns/libidn2:= )
|
||||
nls? ( virtual/libintl )
|
||||
xcrypt? ( >=sys-libs/libxcrypt-4.1:= )
|
||||
!xcrypt? ( virtual/libcrypt:= )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
app-arch/xz-utils
|
||||
>=dev-lang/perl-5
|
||||
virtual/pkgconfig
|
||||
nls? ( sys-devel/gettext )"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-4.7.2-config-file.patch
|
||||
"${FILESDIR}"/${PN}-5.3.0-libidn_automagic.patch
|
||||
"${FILESDIR}"/${PN}-5.5.6-libxcrypt_automagic.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
if use nls ; then
|
||||
sed -i -e 's:#\(.*pos\):\1:' Makefile || die
|
||||
else
|
||||
sed -i -e '/ENABLE_NLS/s:define:undef:' config.h || die
|
||||
|
||||
# don't generate po files when nls is disabled (bug #419889)
|
||||
sed -i -e '/^all:/s/ pos//' \
|
||||
-e '/^install:/s/ install-pos//' Makefile || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() { :; } # expected no-op
|
||||
|
||||
src_compile() {
|
||||
unset HAVE_ICONV HAVE_LIBIDN
|
||||
|
||||
use iconv && export HAVE_ICONV=1
|
||||
use idn && export HAVE_LIBIDN=1
|
||||
use xcrypt && export HAVE_XCRYPT=1
|
||||
|
||||
tc-export CC
|
||||
|
||||
emake CFLAGS="${CFLAGS} ${CPPFLAGS}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake BASEDIR="${ED}" prefix=/usr install
|
||||
|
||||
insinto /etc
|
||||
doins whois.conf
|
||||
dodoc README debian/changelog
|
||||
}
|
@ -17,7 +17,7 @@ else
|
||||
#SRC_URI="https://github.com/rfc1036/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
#S="${WORKDIR}"/${PN}
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
|
Loading…
x
Reference in New Issue
Block a user