X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by lists.alpinelinux.org (Postfix) with ESMTP id DFEF41EB587 for ; Fri, 15 Oct 2010 20:18:05 +0000 (UTC) Received: by yxn35 with SMTP id 35so484529yxn.13 for ; Fri, 15 Oct 2010 13:18:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=/NvBiRGtf0YE90QhAmzazel58+dmPgwi2TNZrh51u6s=; b=v/Nq2rhN0Js3dKf5bTvDS3kfgGtgWfIzJUQhcPfvFXyQ2/DiDxO+NhAl3a8NLCp9p+ vC6Gazev10UF1R+k1CLsxXjDgy4CA1is/Zl3PGApJdLSu5YtDdP6+h9mbLEWNEMz335+ IfTTAHyzdMBeYul9wx+UF1OaihtdDvB1eCf4I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=fuPdk7oOBVat1gUQ1g8XSF3yrS64Zzvg7elBmCcrq5qWXqQOZeOwSqrMfehy7RkcuB AhZP2qpBIi7I/06ImjSvhm9rIBn73phYZ2TW1bA6jrrepY8jOb/Ir3XVvAA7Z7OrNcIO QkKVPCyMggGk23syvtxegwm/BDEDqc6JKboJk= Received: by 10.100.105.10 with SMTP id d10mr307538anc.4.1287173884363; Fri, 15 Oct 2010 13:18:04 -0700 (PDT) Received: from localhost.localdomain (mx1.wtbts.ca [216.249.2.10]) by mx.google.com with ESMTPS id d8sm513782ana.22.2010.10.15.13.18.02 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 15 Oct 2010 13:18:03 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH] main/snmptt: moved from testing Date: Mon, 27 Feb 2006 22:27:21 +0000 Message-Id: <1141079241-9519-1-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.3.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/snmptt/APKBUILD | 28 ++++++++++++++++++++++++++++ testing/snmptt/APKBUILD | 28 ---------------------------- 2 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 main/snmptt/APKBUILD delete mode 100644 testing/snmptt/APKBUILD diff --git a/main/snmptt/APKBUILD b/main/snmptt/APKBUILD new file mode 100644 index 0000000..041ac9a --- /dev/null +++ b/main/snmptt/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Jeff Bilyk +# Maintainer: Natanael Copa +pkgname=snmptt +pkgver=1.3 +pkgrel=0 +pkgdesc="Translates traps received from snmptrapd into easy to understand messages" +url="http://www.snmptt.org" +license="GPL" +depends=perl +makedepends= +install= +source="http://downloads.sourceforge.net/$pkgname/${pkgname}_$pkgver.tgz" + +build() { + return 0 +} + +package() { + cd "$srcdir"/snmptt_${pkgver} + mkdir -p "$pkgdir"/var/log/snmptt + install -D -m755 snmptt "$pkgdir"/usr/bin/snmptt + install -D -m755 snmptthandler "$pkgdir"/usr/bin/snmptthandler + install -D -m755 snmpttconvert "$pkgdir"/usr/bin/snmpttconvert + install -D -m755 snmpttconvertmib "$pkgdir"/usr/bin/snmpttconvertmib + install -D -m644 snmptt.ini "$pkgdir"/etc/snmptt.ini +} + +md5sums="ee8d8206d3e0d860fee126e09d8eb207 snmptt_1.3.tgz" diff --git a/testing/snmptt/APKBUILD b/testing/snmptt/APKBUILD deleted file mode 100644 index 041ac9a..0000000 --- a/testing/snmptt/APKBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# Contributor: Jeff Bilyk -# Maintainer: Natanael Copa -pkgname=snmptt -pkgver=1.3 -pkgrel=0 -pkgdesc="Translates traps received from snmptrapd into easy to understand messages" -url="http://www.snmptt.org" -license="GPL" -depends=perl -makedepends= -install= -source="http://downloads.sourceforge.net/$pkgname/${pkgname}_$pkgver.tgz" - -build() { - return 0 -} - -package() { - cd "$srcdir"/snmptt_${pkgver} - mkdir -p "$pkgdir"/var/log/snmptt - install -D -m755 snmptt "$pkgdir"/usr/bin/snmptt - install -D -m755 snmptthandler "$pkgdir"/usr/bin/snmptthandler - install -D -m755 snmpttconvert "$pkgdir"/usr/bin/snmpttconvert - install -D -m755 snmpttconvertmib "$pkgdir"/usr/bin/snmpttconvertmib - install -D -m644 snmptt.ini "$pkgdir"/etc/snmptt.ini -} - -md5sums="ee8d8206d3e0d860fee126e09d8eb207 snmptt_1.3.tgz" -- 1.7.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---