33 lines
663 B
Bash
33 lines
663 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
inherit eutils
|
|
|
|
DESCRIPTION="Dynamic DNS client with plugins for several dynamic dns services"
|
|
HOMEPAGE="https://savannah.nongnu.org/projects/updatedd/"
|
|
SRC_URI="https://savannah.nongnu.org/download/updatedd/${PN}_${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~ppc ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND=""
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-options.patch
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
econf --disable-static
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
mv "${D}"/usr/share/doc/updatedd "${D}"/usr/share/doc/${PF}
|
|
prune_libtool_files
|
|
}
|