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 6158D1387FD for ; Mon, 9 Jun 2014 13:41:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C0F9E08D2; Mon, 9 Jun 2014 13:41:05 +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 A8F30E08D2 for ; Mon, 9 Jun 2014 13:41:04 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7C29233FB4D for ; Mon, 9 Jun 2014 13:41:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 11FA0181A9 for ; Mon, 9 Jun 2014 13:41:02 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1402321252.05a91d89cab7787dc5471a0e39428fdc63fb6f84.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: net-dns/inadyn-mt/ X-VCS-Repository: proj/betagarden X-VCS-Files: net-dns/inadyn-mt/inadyn-mt-02.24.40.ebuild X-VCS-Directories: net-dns/inadyn-mt/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 05a91d89cab7787dc5471a0e39428fdc63fb6f84 X-VCS-Branch: master Date: Mon, 9 Jun 2014 13:41:02 +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: 7576e948-c67d-4802-8195-817eb80062c1 X-Archives-Hash: 501192f0023fe93d326b35b9bcd91e73 commit: 05a91d89cab7787dc5471a0e39428fdc63fb6f84 Author: Sebastian Pipping pipping org> AuthorDate: Mon Jun 9 13:40:52 2014 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Mon Jun 9 13:40:52 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=05a91d89 net-dns/inadyn-mt: 02.24.40 --- net-dns/inadyn-mt/inadyn-mt-02.24.40.ebuild | 52 +++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/net-dns/inadyn-mt/inadyn-mt-02.24.40.ebuild b/net-dns/inadyn-mt/inadyn-mt-02.24.40.ebuild new file mode 100644 index 0000000..0b47aa7 --- /dev/null +++ b/net-dns/inadyn-mt/inadyn-mt-02.24.40.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="3" + +inherit user eutils + +MY_P="${PN}.v.${PV}" +DESCRIPTION="Dynamic DNS (DynDNS) Update daemon in C that supports multiple services" +HOMEPAGE="http://sourceforge.net/projects/inadyn-mt" +SRC_URI="mirror://sourceforge/${PN}/${PN}/${MY_P}/${MY_P}.tar.gz" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-libs/libao" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/${MY_P} + +pkg_setup() { + enewuser ${PN} +} + +src_prepare() { + rm -R bin || die + + # inadyn-mt comes with outdated inadyn man pages - see inadyn-mt bug 2445206 + rm man/inadyn.8 + rm man/inadyn.conf.5 +} + +src_install() { + # dodir /usr/share || die + emake DESTDIR="${D}" INSTALL_PREFIX="${D}"/usr/share install || die + + dodoc ChangeLog NEWS README NOTICE AUTHORS || die + dohtml readme.html || die + + newinitd "${FILESDIR}"/${PN}.initd ${PN} || die + insinto /etc + doins "${FILESDIR}"/${PN}.conf || die +} + +pkg_postinst() { + elog "You will need to edit /etc/inadyn-mt.conf before running inadyn-mt" + elog "for the first time. The format is basically the same as the" + elog "command line options; see inadyn-mt and inadyn-mt.conf manpages." +}