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 6C4E5138216 for ; Mon, 2 May 2016 22:24:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCF7121C07A; Mon, 2 May 2016 22:24:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B32A9E0866 for ; Mon, 2 May 2016 22:24:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AACA2340BDA for ; Mon, 2 May 2016 22:24:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D477E929 for ; Mon, 2 May 2016 22:24:01 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1462227707.867818b4326f4f77344ec8c26d50232a9b82e740.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/reaim/files/, net-im/reaim/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/reaim/files/reaim net-im/reaim/reaim-0.8-r2.ebuild X-VCS-Directories: net-im/reaim/ net-im/reaim/files/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 867818b4326f4f77344ec8c26d50232a9b82e740 X-VCS-Branch: master Date: Mon, 2 May 2016 22:24:01 +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: 83162ccc-7730-4f67-b4e3-0f6f72b843b4 X-Archives-Hash: 80a4c528a956174c212f554fc8c384bd commit: 867818b4326f4f77344ec8c26d50232a9b82e740 Author: Austin English gentoo org> AuthorDate: Mon May 2 21:48:09 2016 +0000 Commit: Austin English gentoo org> CommitDate: Mon May 2 22:21:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=867818b4 net-im/reaim: use #!/sbin/openrc-run instead of #!/sbin/runscript Gentoo-Bug: https://bugs.gentoo.org/573846 Package-Manager: portage-2.2.26 net-im/reaim/files/reaim | 4 ++-- net-im/reaim/reaim-0.8-r2.ebuild | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 2 deletions(-) diff --git a/net-im/reaim/files/reaim b/net-im/reaim/files/reaim index f10cd7e..71bafae 100644 --- a/net-im/reaim/files/reaim +++ b/net-im/reaim/files/reaim @@ -1,5 +1,5 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ diff --git a/net-im/reaim/reaim-0.8-r2.ebuild b/net-im/reaim/reaim-0.8-r2.ebuild new file mode 100644 index 0000000..778f9c2 --- /dev/null +++ b/net-im/reaim/reaim-0.8-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="AIM transport proxy over NAT firewalls" +HOMEPAGE="http://reaim.sourceforge.net/" +SRC_URI="mirror://sourceforge/reaim/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=sys-apps/sed-4" +RDEPEND="net-firewall/iptables" + +pkg_setup() { + tc-export CC +} + +src_prepare() { + sed -i -e 's/gcc/$(CC) $(CFLAGS) $(LDFLAGS)/' \ + -e 's/ -g / /' Makefile || die "sed failed" #365863 + default +} + +src_install() { + local HTML_DOCS=( html ) + einstalldocs + doman reaim.8 + dosbin reaim + doinitd "${FILESDIR}"/reaim +}