[Bioperl-l] bioperl-1.2 : man pages?

Fernan Aguero fernan@iib.unsam.edu.ar
Thu, 9 Jan 2003 16:36:09 -0300


--0ntfKIWw70PvrIHh
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

+----[ Ewan Birney <birney@ebi.ac.uk> (09.Jan.2003 10:50):
|
| > sub MY::manifypods {
| > 	my $self = shift;
| > 	#print STDERR "In manifypods moment\n";
| > 	if( 1 ) {
| > 		return "\nmanifypods : pure_all\n\t$self->{NOECHO}\$(NOOP)\n"
| > 	} 
| > 	else {
| > 		return $self->SUPER::manifypods(@_);
| > 	}
| > }
| 
| if you delete this show section (or comment it out) manifycation will 
| happen again. 
|
+----]

Thanks. Commenting out the whole sub worked fine. 

BTW what is the status of bioperl-gui, bioperl-corba-server
and bioperl-corba-client? The current freebsd port (at
v0.7.2) also drives installation of these. My update of the
port just installs plain bioperl-1.2 with no extra stuff.
Are those in use/maintained or can I safely omit them?

Fernan

PS: if there are any FreeBSD users on this list, please
share your opinions.

PS2: in case any other users want the man pages back I've
attached a patch against Makefile.PL (patch-manify). Simply
cd to the top level bioperl-1.2 dir after extraction and do:
patch < path/to/patch-manify

-- 
F e r n a n   A g u e r o
http://genoma.unsam.edu.ar/~fernan

--0ntfKIWw70PvrIHh
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=patch-manify

--- Makefile.PL.orig	Thu Jan  9 09:44:04 2003
+++ Makefile.PL	Thu Jan  9 10:53:07 2003
@@ -271,15 +271,15 @@
 );
 
 
-sub MY::manifypods {
-    my $self = shift;
-    #print STDERR "In manifypods moment\n";
-    if( 1 ) {
-        return "\nmanifypods : pure_all\n\t$self->{NOECHO}\$(NOOP)\n"
-      }
-      else {
-        return $self->SUPER::manifypods(@_);
-      }
-    }
+# sub MY::manifypods {
+#    my $self = shift;
+#    #print STDERR "In manifypods moment\n";
+#    if( 1 ) {
+#        return "\nmanifypods : pure_all\n\t$self->{NOECHO}\$(NOOP)\n"
+#      }
+#      else {
+#        return $self->SUPER::manifypods(@_);
+#      }
+#    }
 
 

--0ntfKIWw70PvrIHh--