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 1EA03DC01AA for ; Sun, 27 Mar 2016 19:29:47 +0000 (UTC) Received: from mail-pf0-f194.google.com (mail-pf0-f194.google.com [209.85.192.194]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id D828EDC00D8 for ; Sun, 27 Mar 2016 19:29:46 +0000 (UTC) Received: by mail-pf0-f194.google.com with SMTP id q129so18366455pfb.3 for ; Sun, 27 Mar 2016 12:29:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=nyuxQ8SGgJrG4Z7+poyxpiVJx+iH0y19HY24m3oPsw8=; b=DorNwF79MABXvuyu7qxsOuVVHgYS51Q6IT1tl8UtJThQY+XJN/3U8ZbjlYO4RdXjEU J7MLxZAIYZDzy3URfvNeWd03BYBhxK734oAgFlApjBw1JsSORv2F1Eyx7rdbS0tpw+hX iu/8EJph2JVr/FCS8H4j043DNNXdh2CCROZe4qqR+oHrEKqFxZ4ympfuUAnvDhRJDPou 42rjKlZorygsjKMimpNzYg1qBvzhWEw0X+LlnVxfVhKIuDarBu8quYRtzwVFqzW2D1W6 fRQTxsCp0P/D5ClUpZ/4eGtIincWErNFQ+dXNTF16WEpAKew2Nzvz2PssUQMuemHDst4 BPng== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=nyuxQ8SGgJrG4Z7+poyxpiVJx+iH0y19HY24m3oPsw8=; b=TmAe0NTu57czIsRfjeWr/UmKDQaWDIOxfzuhe5Yfph+OfInKlVDjht3b367UTu+hb7 5zyMtnwVZdQBW/BM3ig29oQvM+40uft6ZS/j5USl2zrYIVTG91PWXjUSmGuIRyWtZAIC RNo9FQE4TIm+cEQydr1VWdoUbeFkEqyz9dL3tOBymJJhg+bKOJadQNhIUSFrSir4XVFI 5MAyFr0yU+oukmxwoBogMNBTHQFSAOKFkdTwIsxXgr2tbCJbM5DrOKvMunvmE4ArtlEH 8gN2cuuENxIYlc+r5smbFOCh/S6wf2VyfJaFDqWwTd6pdFcYwCc7R2B/4L+kJx1VUPRZ yQZQ== X-Gm-Message-State: AD7BkJLh+tgddP/4YKVjGGEkSUQWdnrzLHOYZd/uZVjoWLVD1CMOWGAE+vMryghLSBj+AA== X-Received: by 10.98.65.82 with SMTP id o79mr36713022pfa.115.1459105878840; Sun, 27 Mar 2016 12:11:18 -0700 (PDT) Received: from localhost (118-160-112-167.dynamic.hinet.net. [118.160.112.167]) by smtp.gmail.com with ESMTPSA id fn3sm30149965pab.20.2016.03.27.12.11.18 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 27 Mar 2016 12:11:18 -0700 (PDT) From: Lance Chen To: alpine-aports@lists.alpinelinux.org Cc: Lance Chen Subject: [alpine-aports] [PATCH] testing/pdns: add subpackage pdns-backend-bind Date: Mon, 28 Mar 2016 03:11:15 +0800 Message-Id: <1459105875-20296-1-git-send-email-cyen0312@gmail.com> X-Mailer: git-send-email 2.7.4 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Enable bind module. Bind backend is a handy method for setting up a minimal powerdns instance. --- testing/pdns/APKBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testing/pdns/APKBUILD b/testing/pdns/APKBUILD index 2c30087..ffa9c31 100644 --- a/testing/pdns/APKBUILD +++ b/testing/pdns/APKBUILD @@ -14,6 +14,7 @@ makedepends="$depends_dev boost-dev lua-dev openldap-dev mariadb-dev postgresql-dev sqlite-dev" install="$pkgname.pre-install $pkgname.post-deinstall" subpackages="$pkgname-doc + $pkgname-backend-bind:backend_bind $pkgname-backend-geo:backend_geo $pkgname-backend-ldap:backend_ldap $pkgname-backend-mysql:backend_mysql @@ -49,7 +50,7 @@ build() { --localstatedir=/var \ --libdir=/usr/lib/pdns \ --with-modules="" \ - --with-dynmodules="geo ldap gmysql gpgsql pipe gsqlite3" \ + --with-dynmodules="bind geo ldap gmysql gpgsql pipe gsqlite3" \ --disable-recursor \ --disable-static \ || return 1 @@ -68,6 +69,7 @@ package() { chown pdns:pdns "$pkgdir"/etc/$pkgname.conf || return 1 } +backend_bind() { _mv_backend bind; } backend_geo() { _mv_backend geo; } backend_ldap() { _mv_backend ldap openldap; } backend_mysql() { _mv_backend gmysql mysql; } -- 2.7.4 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---