View Single Post
Old 8th November 2008
ocicat ocicat is offline
Administrator
 
Join Date: Apr 2008
Posts: 3,319
Default

Quote:
Originally Posted by mfaridi View Post
can someone put here all thing I must install for Gnome on OpenBSD 4.4 like text file and I do install all of them with pkg_add ?
Because a number of us run 4.4-current, any type of output provided may not match what is found in 4.4-release.

Thus, you can generate your own list by writing a simple shell or Perl script which will isolate the package name from the command previously provided by jggimi:
Code:
#!/usr/bin/perl

foreach (`make show=pkgname`) {
    next if $_ eq "\n";
    s!^.*/!!;
    print;
}
You really need to consider spending the time needed to learn how to write simple scripts for yourself.
Reply With Quote