Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
637
Issues
637
List
Boards
Labels
Service Desk
Milestones
Merge Requests
106
Merge Requests
106
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
30e31ecd
Commit
30e31ecd
authored
Mar 04, 2012
by
Evan Hunt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup
parent
e41d5a00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
89 deletions
+0
-89
util/mkreslib.pl
util/mkreslib.pl
+0
-89
No files found.
util/mkreslib.pl
deleted
100644 → 0
View file @
e41d5a00
#!/usr/bin/perl
#
# Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# $Id: mkreslib.pl,v 1.12 2007/06/19 23:47:24 tbox Exp $
# Build a res_* library distribution from the BIND 8 source
#
# Usage:
#
# Export the BIND 8 source from CVS into a scratch directory,
# chdir into the 'bind' directory, run this script.
# Finally tar up the directory. For example:
#
# cd $scratch
# cvs export -r t5b-823 bind
# cd bind
# perl $bind9/util/mkreslib.pl
# cd ..
# mv bind libbind8-9.0.0b5
# tar cf - libbind8-9.0.0b5 | gzip >libbind8-9.0.0b5.tar.gz
#
# Don't bother keeping contrib or doc around in the new tarball
system
("
rm -rf Makefile contrib doc
");
system
("
mv src/* src/.??* .
");
system
("
rmdir src
");
# We don't want bin/, conf/, tests/, or OLD/
system
("
rm -rf bin conf tests OLD
");
# Move the old README away
system
("
mv README README.bind8
");
# Make a new README
open
(
README
,
"
>README
")
||
warn
"
README: $!
";
print
README
<<EOF;
This is the resolver library from BIND 8, provided for legacy software
needing access to these functions. Programmers of new software are encouraged
to use the new lightweight resolver library instead.
See the README.bind8 file for the original README shipped with BIND 8.
EOF
close
(
README
);
system
("
mv CHANGES CHANGES.bind8
");
system
("
mv INSTALL INSTALL.bind8
");
# The following files aren't useful here
system
("
rm -rf DNSSEC SUPPORT TODO
");
# Massage the Makefile
system
("
mv Makefile Makefile.bind8
");
open
(
MAKEIN
,
"
Makefile.bind8
")
||
warn
"
Makefile.bind8: $!
";
open
(
MAKEOUT
,
"
>Makefile
")
||
warn
"
Makefile: $!
";
while
(
<
MAKEIN
>
)
{
if
(
/^SUBDIRS= (.*)$/
)
{
$line
=
$
1
;
$line
=~
s/bin//
;
print
MAKEOUT
"
SUBDIRS=
$line
";
next
;
}
if
(
/^links:/
)
{
goto
DONE
;
}
print
MAKEOUT
;
}
DONE:
print
MAKEOUT
"
FRC:
\n
";
close
(
MAKEIN
);
close
(
MAKEOUT
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment