Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 83736 - Updated ebuild for bind-tools-9.2.3-r1 to include nsupdate
Summary: Updated ebuild for bind-tools-9.2.3-r1 to include nsupdate
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Jeffrey Forman (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-03-01 16:06 UTC by Evan Borgstrom
Modified: 2005-03-25 14:30 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Evan Borgstrom 2005-03-01 16:06:49 UTC
Below is a unified diff to update bind-tools-9.2.3-r1 to include nsupdate in the list of tools it installs. Adding this to the bind-tools ebuild is quite useful as we use nsupdate quite a bit and not having to emerge all of bind to get it is a plus.

Reproducible: Always
Steps to Reproduce:
1.
2.
3.




diff -ruN bind-tools-9.2.3-r1.ebuild.orig bind-tools-9.2.3-r1.ebuild
--- bind-tools-9.2.3-r1.ebuild.orig     2005-03-01 19:01:05.380611192 -0500
+++ bind-tools-9.2.3-r1.ebuild  2005-03-01 19:01:33.545329504 -0500
@@ -41,6 +41,12 @@
 
        cd ${S}/bin/dig
        emake || die "make failed in /bin/dig"
+
+       cd ${S}/lib/lwres/
+       emake || die "make failed in /lib/lwres"
+
+       cd ${S}/bin/nsupdate/
+       emake || die "make failed in /bin/nsupdate"
 }
 
 src_install() {
@@ -50,4 +56,8 @@
        cd ${S}/bin/dig
        dobin dig host nslookup || die
        doman dig.1 host.1
+
+       cd ${S}/bin/nsupdate
+       dobin nsupdate || die
+       doman nsupdate.8
 }
Comment 1 Konstantin Arkhipov (RETIRED) gentoo-dev 2005-03-25 14:30:38 UTC
fixed in bind-tools-9.2.5
thanks, Evan