X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from hrndva-omtalb.mail.rr.com (hrndva-omtalb.mail.rr.com [71.74.56.122]) by mail.alpinelinux.org (Postfix) with ESMTP id 21D95DC0E42 for ; Sun, 8 Jul 2012 21:07:28 +0000 (UTC) Authentication-Results: hrndva-omtalb.mail.rr.com smtp.user=deant@hawaii.rr.com; auth=pass (LOGIN) X-Authority-Analysis: v=2.0 cv=AtpsLZBP c=1 sm=0 a=05ChyHeVI94A:10 a=IkcTkHD0fZMA:10 a=ayC55rCoAAAA:8 a=7hQusVW2AAAA:8 a=phYU_WON71qHS1qZn4kA:9 a=QEXdDO2ut3YA:10 a=hodd19auLMwkElwNXQv/yg==:117 X-Cloudmark-Score: 0 Received: from [10.128.132.156] ([10.128.132.156:43893] helo=hrndva-web05-z02) by hrndva-oedge01.mail.rr.com (envelope-from ) (ecelerity 2.2.3.46 r()) with ESMTPA id 62/24-09809-096F9FF4; Sun, 08 Jul 2012 21:07:28 +0000 Message-ID: <20120708210728.ZBMIH.13672.root@hrndva-web05-z02> Date: Sun, 8 Jul 2012 17:07:28 -0400 From: To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] Initial APKBUILD for stunnel X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) Sensitivity: Normal X-Originating-IP: SSL wrapper for TCP connections. See http://www.stunnel.org/ TODO: needs Alpine style initscript. reasonable defaults in sample config file (is there a preferred directory for chroot jails?) commit 8f4bfc56164419ecd3e7b91c77cf6d587b0cc16b Author: Dean Takemori Date: Sat Jul 7 09:01:16 2012 -1000 Add APKBUILD for stunnel to testing diff --git a/testing/stunnel/APKBUILD b/testing/stunnel/APKBUILD new file mode 100644 index 0000000..470db2a --- /dev/null +++ b/testing/stunnel/APKBUILD @@ -0,0 +1,48 @@ +# Contributor: Dean Takemori +# Maintainer: +pkgname=stunnel +pkgver=4.53 +pkgrel=0 +pkgdesc="SSL encryption wrapper between network client and server." +url="http://www.stunnel.org/" +arch="all" +license="GPL2+ with OpenSSL exception" +depends="openssl" +depends_dev="openssl-dev" +makedepends="$depends_dev" +subpackages="$pkgname-doc" +install="" +source="ftp://ftp.stunnel.org/stunnel/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir/$pkgname-$pkgver" +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + install -m644 tools/stunnel.license \ + "$pkgdir"/usr/share/doc/$pkgname/ || return 1 + + rm -f "$pkgdir"/usr/lib/stunnel/*.la +} + +md5sums="ab3bfc915357d67da18c73f73610d593 stunnel-4.53.tar.gz" --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---