X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id E73F9DC6ADE for ; Sun, 6 Dec 2015 09:21:56 +0000 (UTC) Received: from apollo.thewebhostserver.com (unknown [46.28.50.181]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 7C850DC00BD for ; Sun, 6 Dec 2015 09:21:55 +0000 (UTC) Received: from [81.4.121.188] (port=36924 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.86) (envelope-from ) id 1a5VVy-0016y6-0m for alpine-aports@lists.alpinelinux.org; Sun, 06 Dec 2015 09:21:54 +0000 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 4/4] testing/whois: new aport Date: Sun, 6 Dec 2015 09:21:49 +0000 Message-Id: <1449393709-11132-4-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.6.3 In-Reply-To: <1449393709-11132-1-git-send-email-developer@it-offshore.co.uk> References: <1449393709-11132-1-git-send-email-developer@it-offshore.co.uk> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Marco d'Itri's whois client. --- testing/whois/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 testing/whois/APKBUILD diff --git a/testing/whois/APKBUILD b/testing/whois/APKBUILD new file mode 100644 index 0000000..bc7267b --- /dev/null +++ b/testing/whois/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +pkgname=whois +pkgver=5.2.10 +pkgrel=0 +pkgdesc="Intelligent WHOIS client by Marco d'Itri" +url="http://www.linux.it/~md/software/" +arch="all" +license="GPLv2" +makedepends="$depends_dev perl libidn-dev gettext-dev" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/rfc1036/$pkgname/archive/v$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver + +build() { + cd "$_builddir" + make CONFIG_FILE="/etc/whois.conf" \ + HAVE_LIBIDN=1 HAVE_ICONV=1 \ + CFLAGS="$CFLAGS -lintl $CXXFLAGS" || return 1 +} + +package() { + cd "$_builddir" + make BASEDIR="$pkgdir" install-whois || return 1 + install -D -m644 whois.conf "$pkgdir/etc/whois.conf" +} + +md5sums="19579468bdb311eed5c6b8c3216cce1b whois-5.2.10.tar.gz" +sha256sums="8169bead001fb68d14f09a49c117d3408d48a3378f3a67eb0e56848a637ad54e whois-5.2.10.tar.gz" +sha512sums="c3280d62329035c12cc69dd45986d32fd9c858efa9b2d8674cb8208429c1eb35dfcb50aaab442215e5c3321cbb1fc4ecabff7058c38da2db8fb5f0aac61429c2 whois-5.2.10.tar.gz" -- 2.6.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---