From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 697BF1388C1 for ; Sun, 27 Dec 2015 13:43:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE1B721C009; Sun, 27 Dec 2015 13:43:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8B0A221C009 for ; Sun, 27 Dec 2015 13:43:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CAB7D340545 for ; Sun, 27 Dec 2015 13:43:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE4E0732 for ; Sun, 27 Dec 2015 13:43:38 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1451223776.4b2b84a7d4d69c914746c0ad9f199d98fbcb765c.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/simpserver-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/simpserver-bin/simpserver-bin-2.1.0-r1.ebuild X-VCS-Directories: net-im/simpserver-bin/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 4b2b84a7d4d69c914746c0ad9f199d98fbcb765c X-VCS-Branch: master Date: Sun, 27 Dec 2015 13:43:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 13fbacab-d1af-4b4e-aef9-812bf3558e88 X-Archives-Hash: 7530a8a62a87f61fcafd595a4ea53ef3 commit: 4b2b84a7d4d69c914746c0ad9f199d98fbcb765c Author: Manuel Rüger gentoo org> AuthorDate: Sun Dec 27 13:42:56 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Dec 27 13:42:56 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2b84a7 net-im/simpserver-bin: EAPI bump Package-Manager: portage-2.2.26 .../simpserver-bin/simpserver-bin-2.1.0-r1.ebuild | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/net-im/simpserver-bin/simpserver-bin-2.1.0-r1.ebuild b/net-im/simpserver-bin/simpserver-bin-2.1.0-r1.ebuild new file mode 100644 index 0000000..e7f2955 --- /dev/null +++ b/net-im/simpserver-bin/simpserver-bin-2.1.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MY_PN=${PN/-bin/} +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="SimpServer for Unix: IM instant security transparent proxy" +SRC_URI="http://download.secway.com/public/products/simpserver/${MY_P}-linux-x86.tgz" +HOMEPAGE="http://www.secway.com/" +LICENSE="simpserver-test" + +KEYWORDS="-* ~amd64 ~x86" +IUSE="" +SLOT="0" +S=${WORKDIR}/simp + +RESTRICT="strip" + +src_compile() { + einfo "Binary distribution. No compilation required." +} + +src_install () { + dodoc README VERSION doc/CONFIG doc/TODO + + exeinto /opt/bin + doexe bin/${MY_PN} + + insinto /etc + doins etc/simp.conf + + newinitd "${FILESDIR}/${MY_PN}".rc ${MY_PN} +} + +pkg_postinst() { + elog "Please edit the configuration file: /etc/simp.conf." +}