net-dns/updatedd: add another patch to respect --docdir.
authorMichael Orlitzky <mjo@gentoo.org>
Sat, 14 Jan 2017 06:15:51 +0000 (01:15 -0500)
committerMichael Orlitzky <mjo@gentoo.org>
Sat, 14 Jan 2017 06:32:09 +0000 (01:32 -0500)
Package-Manager: portage-2.3.0

net-dns/updatedd/files/respect-docdir.patch [new file with mode: 0644]
net-dns/updatedd/updatedd-2.6-r3.ebuild [moved from net-dns/updatedd/updatedd-2.6-r2.ebuild with 83% similarity]

diff --git a/net-dns/updatedd/files/respect-docdir.patch b/net-dns/updatedd/files/respect-docdir.patch
new file mode 100644 (file)
index 0000000..504220a
--- /dev/null
@@ -0,0 +1,33 @@
+From 8e484c4b0ceac8e7c37492fdf5e5b89f18451277 Mon Sep 17 00:00:00 2001
+From: Michael Orlitzky <michael@orlitzky.com>
+Date: Sat, 14 Jan 2017 01:06:48 -0500
+Subject: [PATCH 1/1] Use the autotools "docdir" in Documentation/Makefile.in.
+
+---
+ Documentation/Makefile.in | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/Documentation/Makefile.in b/Documentation/Makefile.in
+index 8c87281..c213c09 100644
+--- a/Documentation/Makefile.in
++++ b/Documentation/Makefile.in
+@@ -325,12 +325,12 @@ uninstall-am: uninstall-info-am uninstall-local
+ install-data-local:
+-      $(INSTALL) -d $(DESTDIR)$(datadir)/doc/updatedd
+-      $(INSTALL) $(srcdir)/updatedd-*.pdf $(DESTDIR)$(datadir)/doc/updatedd
+-      $(INSTALL) $(srcdir)/updatedd-pppd-rc $(DESTDIR)$(datadir)/doc/updatedd
++      $(INSTALL) -d $(DESTDIR)$(docdir)
++      $(INSTALL) $(srcdir)/updatedd-*.pdf $(DESTDIR)$(docdir)
++      $(INSTALL) $(srcdir)/updatedd-pppd-rc $(DESTDIR)$(docdir)
+ uninstall-local:
+-      $(RM) -r $(DESTDIR)$(datadir)/doc/updatedd
++      $(RM) -r $(DESTDIR)$(docdir)
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+-- 
+2.10.2
+
similarity index 83%
rename from net-dns/updatedd/updatedd-2.6-r2.ebuild
rename to net-dns/updatedd/updatedd-2.6-r3.ebuild
index 1553365661647e74de02c0a5ca6c62f7346c47f1..fbbc113a1be87f244f5d4ab866d18023a8a18d84 100644 (file)
@@ -14,20 +14,20 @@ SLOT="0"
 KEYWORDS="~amd64 ~arm ~ppc ~x86"
 IUSE=""
 
-RDEPEND=""
 DEPEND=""
+RDEPEND="dev-lang/perl"
 
 PATCHES=(
        "${FILESDIR}/${P}-options.patch"
        "${FILESDIR}/fix-ovh-DYNDNSHOST.patch"
+       "${FILESDIR}/respect-docdir.patch"
 )
 
 src_configure() {
-       econf --disable-static
+       econf --disable-static --docdir="/usr/share/doc/${PF}"
 }
 
 src_install() {
        default
-       mv "${D}/usr/share/doc/updatedd" "${D}/usr/share/doc/${PF}" || die
        prune_libtool_files
 }