Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/simpserver-bin/
Date: Sun, 27 Dec 2015 13:43:44
Message-Id: 1451223776.4b2b84a7d4d69c914746c0ad9f199d98fbcb765c.mrueg@gentoo
1 commit: 4b2b84a7d4d69c914746c0ad9f199d98fbcb765c
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 27 13:42:56 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 27 13:42:56 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2b84a7
7
8 net-im/simpserver-bin: EAPI bump
9
10 Package-Manager: portage-2.2.26
11
12 .../simpserver-bin/simpserver-bin-2.1.0-r1.ebuild | 40 ++++++++++++++++++++++
13 1 file changed, 40 insertions(+)
14
15 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
16 new file mode 100644
17 index 0000000..e7f2955
18 --- /dev/null
19 +++ b/net-im/simpserver-bin/simpserver-bin-2.1.0-r1.ebuild
20 @@ -0,0 +1,40 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +MY_PN=${PN/-bin/}
28 +MY_P="${MY_PN}-${PV}"
29 +
30 +DESCRIPTION="SimpServer for Unix: IM instant security transparent proxy"
31 +SRC_URI="http://download.secway.com/public/products/simpserver/${MY_P}-linux-x86.tgz"
32 +HOMEPAGE="http://www.secway.com/"
33 +LICENSE="simpserver-test"
34 +
35 +KEYWORDS="-* ~amd64 ~x86"
36 +IUSE=""
37 +SLOT="0"
38 +S=${WORKDIR}/simp
39 +
40 +RESTRICT="strip"
41 +
42 +src_compile() {
43 + einfo "Binary distribution. No compilation required."
44 +}
45 +
46 +src_install () {
47 + dodoc README VERSION doc/CONFIG doc/TODO
48 +
49 + exeinto /opt/bin
50 + doexe bin/${MY_PN}
51 +
52 + insinto /etc
53 + doins etc/simp.conf
54 +
55 + newinitd "${FILESDIR}/${MY_PN}".rc ${MY_PN}
56 +}
57 +
58 +pkg_postinst() {
59 + elog "Please edit the configuration file: /etc/simp.conf."
60 +}