03e6193f13
which holds final veto power over what @dirrm lines go into the plist. This is a bit less evil than all the regexps previously used to manually remove those directories.
93 lines
2.1 KiB
Ruby
Executable File
93 lines
2.1 KiB
Ruby
Executable File
#!/usr/local/bin/ruby
|
|
# pkg-plist generator by Brian Fundakowski Feldman <green@FreeBSD.org>
|
|
# (public domain)
|
|
# $FreeBSD$
|
|
|
|
class Plist
|
|
def initialize(no_manpages = true, mtree = [])
|
|
@no_manpages = no_manpages
|
|
@mtree = mtree
|
|
self
|
|
end
|
|
def make(dir)
|
|
@root = dir.to_s + '/'
|
|
imake('', 0, '')
|
|
end
|
|
private
|
|
def imake(dir, level, prevwd)
|
|
thiswd = prevwd + dir # always ends in '/'
|
|
rootedwd = @root + thiswd
|
|
subs = []
|
|
Dir.foreach(rootedwd) {|dirent|
|
|
next if dirent =~ /^\.\.?$/
|
|
if test(?d, rootedwd + dirent)
|
|
subs.concat(imake(dirent + '/', level + 1, thiswd))
|
|
else
|
|
if thiswd !~ /^man\// || !@no_manpages
|
|
subs.push(thiswd + dirent)
|
|
end
|
|
end
|
|
}
|
|
thiswd.chop!
|
|
# Strip mtree-created directories
|
|
if level > 0 && !@mtree.find {|x| x == thiswd}
|
|
subs.push('@dirrm ' + thiswd)
|
|
end
|
|
return subs
|
|
end
|
|
end
|
|
|
|
class Mtree
|
|
def initialize(strip = 1)
|
|
@paths = []
|
|
@curlevel = []
|
|
@strip = strip.to_i
|
|
self
|
|
end
|
|
def parse_line(line)
|
|
line.gsub!(/^[[:space:]]*(.*?)[[:space:]]*$/, '\1')
|
|
line.chomp!
|
|
case line
|
|
when ''
|
|
when /^[\/#]/
|
|
# ignore "command" lines and comments
|
|
when '..'
|
|
if @curlevel.pop.nil?
|
|
raise '".." with no previous directory'
|
|
end
|
|
else
|
|
line = line.split
|
|
@curlevel.push(line[0])
|
|
@paths.push(@curlevel.dup)
|
|
end
|
|
self
|
|
end
|
|
def Mtree.read(filename)
|
|
m = Mtree.new
|
|
open(filename, 'r') {|file|
|
|
file.each_line {|line| m.parse_line(line)}
|
|
}
|
|
m
|
|
end
|
|
def paths
|
|
@paths.collect {|path| path[@strip..-1].join('/')}
|
|
end
|
|
end
|
|
|
|
if __FILE__ == $0
|
|
require 'getopts'
|
|
if !getopts('M', 'm:') || ARGV.size != 1
|
|
$stderr.print <<-USAGE_EOF
|
|
usage: #{$0} [-M] [-m mtree] somepath
|
|
Generate a pkg-plist to stdout given a previously empty somepath which
|
|
a port has been installed into (PREFIX=somepath). The mtree file is
|
|
consulted to prevent base directories from being added to the plist.
|
|
The -M argument allows manpages to be added to the plist.
|
|
USAGE_EOF
|
|
exit 1
|
|
end
|
|
man = $OPT_M || true
|
|
mtree = $OPT_m || '/etc/mtree/BSD.local.dist'
|
|
puts Plist.new(man, Mtree.read(mtree).paths).make(ARGV[0]).join("\n")
|
|
end
|