#!/usr/bin/perl -w ############################################################################ # Copyright (C) 2005 by Fabio Marzocca # # thesaltydog@gmail.com # # # # This program is free software; you can redistribute it and or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation; either version 2 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program; if not, write to the # # Free Software Foundation, Inc., # # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################ use strict; use lib '@PKGLIBDIR@'; use gtkorphan_app; my $app = gtkorphan_app->new; Gtk2->main; 0; #################################################################### ##################################################################### __END__ =head1 NAME B - A graphical tool to find and remove orphaned libraries =head1 SYNOPSIS B =head1 DESCRIPTION B is a graphical tool which scans your debian system, looking for orphaned libraries. It implements a GUI front-end to deborphan, but adds the package removal capability. A detailed documentation on the program can be found at: http://www.marzocca.net/linux/gtkorphan.html. =head1 SEE ALSO B(1) =head1 AUTHOR Fabio MARZOCCA =cut