diff options
Diffstat (limited to 'net-dns/inadyn/inadyn-1.96.2.ebuild')
-rw-r--r-- | net-dns/inadyn/inadyn-1.96.2.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/net-dns/inadyn/inadyn-1.96.2.ebuild b/net-dns/inadyn/inadyn-1.96.2.ebuild new file mode 100644 index 000000000..473654e7a --- /dev/null +++ b/net-dns/inadyn/inadyn-1.96.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils + +DESCRIPTION="Dyndns client in C supporting various services" +HOMEPAGE="http://inadyn.ina-tech.net/" +SRC_URI="http://inadyn.ina-tech.net/${PN}.v${PV}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="" + +S=${WORKDIR}/${PN} + +pkg_setup() { + enewuser inadyn -1 -1 -1 +} + +src_install() { + dosbin bin/linux/inadyn + doman man/* + dohtml readme.html + + newinitd "${FILESDIR}"/inadyn.initd inadyn + + insinto /etc + doins "${FILESDIR}"/inadyn.conf +} + +pkg_postinst() { + elog "You will need to edit /etc/inadyn.conf file before" + elog "running inadyn for the firt time. The file is basically" + elog "command line options; see inadyn and inayn.conf manpages." +} |