bibshelf-1.6.0/0000777000175000017500000000000011132460423010275 500000000000000bibshelf-1.6.0/src/0000777000175000017500000000000011132460423011064 500000000000000bibshelf-1.6.0/src/Book.h0000644000175000017500000000574111105623241012051 00000000000000/* * 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 Library 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. */ #ifndef _BOOK_H #define _BOOK_H #include #include #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) using namespace std; class Book { public: Book(); virtual ~Book(); /* When compared with other books, compare /only/ the "originator" fields. */ bool operator ==(Book book); /* Defines the book author. */ void set_author(string author); /* Returns the book author. */ string get_author(void); /* Defines the book title. */ void set_title(string title); /* Returns the book title. */ string get_title(void); /* Defines the book ISBN. */ void set_isbn(string isbn); /* Returns the book ISBN. */ string get_isbn(void); /* Defines the book category. */ void set_category(string category); /* Returns the book category. */ string get_category(void); /* Defines the book summary. */ void set_summary(string summary); /* Returns the book summary. */ string get_summary(void); /* Returns the first 'len' characters of the book summary. */ string get_summary(unsigned int len); /* Defines the book review. */ void set_review(string review); /* Returns the book review. */ string get_review(void); /* Defines the book rating. */ void set_rating(int rating); /* Returns the book rating. */ int get_rating(void); /* Defines the book read date. */ void set_readdate(unsigned int year, unsigned int month, unsigned int day); /* Defines the book read date. */ void set_readdate_string(string date); /* Returns the book read date. */ tm get_readdate(void); /* Returns the book read date as a string. */ string get_readdate_string(void); /* Defines the book filename. */ void set_filename(string filename); /* Returns the book filename. */ string get_filename(void); /* Returns the originator (a unique identifier for the book, which is stable * for the complete runtime (only). */ Book* get_originator(void); protected: Book* originator; string author; string title; string isbn; string category; string summary; string review; int rating; struct tm readdate; string filename; }; #endif /* _BOOK_H */ bibshelf-1.6.0/src/GtkBookList.h0000644000175000017500000000767311105623241013361 00000000000000/* * 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 Library 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. */ #ifndef _GTKBOOKLIST_H #define _GTKBOOKLIST_H #include #include #include #include #include #include "Book.h" #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) enum GTKBOOKLIST_COLUMNS { GTKBOOKLIST_COLUMN_ICON, GTKBOOKLIST_COLUMN_AUTHORANDTITLE, GTKBOOKLIST_COLUMN_TITLE, GTKBOOKLIST_COLUMN_CATEGORY, GTKBOOKLIST_COLUMN_READDATE, GTKBOOKLIST_COLUMN_READDATE_TIMET, GTKBOOKLIST_COLUMN_RATING, GTKBOOKLIST_COLUMN_RATING_INT, GTKBOOKLIST_COLUMN_BOOK_PTR }; class GtkBookList : public Gtk::TreeView { public: GtkBookList(); ~GtkBookList(); /* Triggered whenever a book has been selected. */ SigC::Signal1 signal_book_selected; /* Triggered whenever a book has been activated. */ SigC::Signal1 signal_book_activated; /* Triggered whenever a book has been added or removed. */ SigC::Signal0 signal_changed; /* Triggered whenever the list sorting was changed. */ SigC::Signal0 signal_sorting_changed; /* Inserts the given book. */ void insert_book(Book* book); /* Removes the given book from the list. */ void remove_book(Book* book); /* Removes the selected book. */ void remove_selected(void); /* Walks through all books that are currently in the list, updating the * row text in case anything changed. */ void update_soft(void); /* Returns the first selected book. */ Book* get_first_selected(void); /* Returns the number books in the list. */ int get_numitems(void); /* Defines the sort column. */ void set_sorting(int col); /* Returns the sort column number. */ int get_sorting(void); private: /* Fills the given tree row with the data from the given book. */ void row_fill(Gtk::TreeModel::Row &row, Book* book); void on_selection_activated(Gtk::TreePath path, Gtk::TreeViewColumn* column); void on_selection_changed(void); // List model columns. class ModelColumns : public Gtk::TreeModel::ColumnRecord { public: Gtk::TreeModelColumn > icon; Gtk::TreeModelColumn author_and_title; Gtk::TreeModelColumn title; Gtk::TreeModelColumn category; Gtk::TreeModelColumn readdate; Gtk::TreeModelColumn readdate_time_t; Gtk::TreeModelColumn > rating; Gtk::TreeModelColumn rating_integer; Gtk::TreeModelColumn book; ModelColumns() { add(icon); add(author_and_title); add(title); add(category); add(readdate); add(readdate_time_t); add(rating); add(rating_integer); add(book); } }; Glib::RefPtr store; Glib::RefPtr pixbuf_book; std::vector > pixbuf_rating; ModelColumns columns; std::map booklist; int numitems; }; #endif /* _GTKBOOKLIST_H */ bibshelf-1.6.0/src/Controller.cc0000644000175000017500000002701011105623241013431 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "Controller.h" //#define _DEBUG_ Controller::Controller() { // Connect signals. mainwindow.signal_button_add_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_main_button_add_clicked)); mainwindow.signal_button_delete_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_main_button_delete_clicked)); mainwindow.signal_button_details_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_main_button_details_clicked)); mainwindow.booklist.signal_book_selected.connect( sigc::mem_fun(*this, &Controller::on_dialog_main_gtkbooklist_signal_book_selected)); mainwindow.booklist.signal_book_activated.connect( sigc::mem_fun(*this, &Controller::on_dialog_main_gtkbooklist_signal_book_activated)); diskstorage.signal_book_loaded.connect( sigc::mem_fun(*this, &Controller::on_diskstorage_signal_book_loaded)); // Initialize the storage and load all books from the local HD. if (diskstorage.init(DEFAULT_BOOK_DIRECTORY) != 0) { char primary[2000]; char secondary[2000]; string directory = DEFAULT_BOOK_DIRECTORY; snprintf(primary, 2000, _("Unable to create or access the book folder")); snprintf(secondary, 2000, _("The folder containing the book documents could not be " "created.\n" "This usually happens due " "to a problem with the file access restrictions given to this " "program by the administrator.\n" "Please make sure that the program has all permissions on " "\"%s\" and try again. Sorry."), directory.c_str()); new DialogError(primary, secondary, mainwindow); } if (diskstorage.load_all() != 0) { char primary[2000]; char secondary[2000]; string directory = DEFAULT_BOOK_DIRECTORY; snprintf(primary, 2000, _("Unable to open the book folder")); snprintf(secondary, 2000, _("The folder containing the book documents could not be opened.\n" "This usually happens due " "to a problem with the file access restrictions given to this " "program by the administrator.\n" "Please make sure that the program has all permissions on " "\"%s\" and try again. Sorry."), directory.c_str()); new DialogError(primary, secondary, mainwindow); } // Initial preview text. Book book; char text[200]; snprintf(text, 199, _("Welcome to %s"), "BibShelf"); book.set_title(text); snprintf(text, 199, _("Version %s"), VERSION); book.set_author(text); book.set_summary(_("To view a book, please select an item from the " "booklist.")); book.set_category(""); mainwindow.update_preview(&book); } Controller::~Controller() { } void Controller::on_dialog_main_button_add_clicked(void) { Book* book = new Book; DialogBookEditor* editor = new DialogBookEditor(book); bookeditorlist[book] = editor; editor->signal_button_cancel_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_bookeditor_signal_button_cancel_clicked)); editor->signal_button_save_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_bookeditor_signal_button_save_clicked)); } void Controller::on_dialog_main_button_delete_clicked(void) { Book* book = mainwindow.booklist.get_first_selected(); if (!book) return; DialogBookDelete* dialog = new DialogBookDelete(book, mainwindow); dialog->signal_button_cancel_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_any_cancel_clicked)); dialog->signal_button_delete_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_book_delete_button_delete_clicked)); } void Controller::on_dialog_main_button_details_clicked(void) { Book* book = mainwindow.booklist.get_first_selected(); if (!book) return; on_dialog_main_gtkbooklist_signal_book_activated(book); } void Controller::on_dialog_main_gtkbooklist_signal_book_selected(Book* book) { mainwindow.update_preview(book); } void Controller::on_dialog_main_gtkbooklist_signal_book_activated(Book* book) { #ifdef _DEBUG_ printf("Controller::on_dialog_main_gtkbooklist_signal_book_activated().\n"); #endif if (bookdialoglist.find(book) != bookdialoglist.end()) return; Book* book_copy = new Book(*book); DialogBook* editor = new DialogBook(book_copy); bookdialoglist[book] = editor; editor->signal_button_edit_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_book_signal_button_edit_clicked)); editor->signal_button_close_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_book_signal_button_close_clicked)); } void Controller::on_dialog_book_signal_button_edit_clicked( DialogBook* dialog, Book* book) { #ifdef _DEBUG_ printf("Controller::on_dialog_book_signal_button_edit_clicked().\n"); #endif bookdialoglist.erase(book->get_originator()); int x, y; dialog->get_position(x, y); delete dialog; DialogBookEditor* editor = new DialogBookEditor(book); editor->move(x, y); bookeditorlist[book] = editor; editor->signal_button_cancel_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_bookeditor_signal_button_cancel_clicked)); editor->signal_button_save_clicked.connect( sigc::mem_fun(*this, &Controller::on_dialog_bookeditor_signal_button_save_clicked)); } void Controller::on_dialog_book_signal_button_close_clicked( DialogBook* dialog, Book* book) { #ifdef _DEBUG_ printf("Controller::on_dialog_book_signal_button_close_clicked().\n"); #endif bookdialoglist.erase(book->get_originator()); delete dialog; delete book; } void Controller::on_dialog_bookeditor_signal_button_cancel_clicked( DialogBookEditor* editor, Book* book) { #ifdef _DEBUG_ printf("Controller::on_dialog_bookeditor_signal_button_cancel_clicked().\n"); #endif bookeditorlist.erase(book->get_originator()); delete editor; delete book; } void Controller::on_dialog_bookeditor_signal_button_save_clicked( DialogBookEditor* editor, Book* book) { #ifdef _DEBUG_ printf("Controller::on_dialog_bookeditor_signal_button_cancel_clicked().\n"); #endif int err = diskstorage.save_book(book); if (err != 0) { char primary[2000]; char secondary[2000]; string directory = DEFAULT_BOOK_DIRECTORY; // Display an error dialog. switch (err) { case STORAGE_ERROR_MAKEDIR_FAILED: snprintf(primary, 2000, _("Unable to create a folder for \"%s\""), book->get_author().c_str()); snprintf(secondary, 2000, _("One possible cause for this problem may be that this program " "has insufficient rights to create a new folder at the given " "location.\n\n" "Please make sure that the program has the permissions to " "write into \"%s\" and try again. Sorry."), directory.c_str()); break; case STORAGE_ERROR_FILE_DELETE_FAILED: snprintf(primary, 2000, _("Unable to delete old book information")); snprintf(secondary, 2000, _("You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to " "be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due " "to a problem with the file access restrictions given to this " "program by the administrator.\n" "Please make sure that the program has all permissions on " "\"%s\" and try again. Sorry."), directory.c_str()); break; default: snprintf(primary, 2000, _("Unable to save the book \"%s\" by \"%s\""), book->get_title().c_str(), book->get_author().c_str()); snprintf(secondary, 2000, _("One possible cause for this problem may be that this program " "has insufficient rights to create a new file at the given " "location.\n\n" "Please make sure that the program has the permissions " "to write into all folders below \"%s\" and try again. " "Sorry."), directory.c_str()); break; } new DialogError(primary, secondary, *editor); return; } *book->get_originator() = *book; bookeditorlist.erase(book->get_originator()); // If this is a new book, insert it into the booklist and return. if (book->get_originator() == book) { mainwindow.booklist.insert_book(book); delete editor; return; } // Update the filelist, and if necessary, the preview. mainwindow.booklist.update_soft(); if (mainwindow.booklist.get_first_selected() == book->get_originator()) mainwindow.update_preview(book->get_originator()); delete editor; delete book; } void Controller::on_dialog_book_delete_button_delete_clicked( Gtk::Dialog* dialog, Book* book) { // If the deleted book has an editor window open, close it. if (bookeditorlist.find(book) != bookeditorlist.end()) { delete bookeditorlist.find(book)->second->get_book(); delete bookeditorlist.find(book)->second; bookeditorlist.erase(book); } delete dialog; if (diskstorage.delete_book(book) != 0) { char primary[2000]; char secondary[2000]; string directory = DEFAULT_BOOK_DIRECTORY; snprintf(primary, 2000, _("Unable to delete the book \"%s\" by \"%s\""), book->get_title().c_str(), book->get_author().c_str()); snprintf(secondary, 2000, _("The document containing the book that you have been trying to " "remove could not be deleted.\n\n" "This usually happens due " "to a problem with the file access restrictions given to this " "program by the administrator.\n" "Please make sure that the program has all permissions on " "\"%s\" and try again. Sorry."), directory.c_str()); new DialogError(primary, secondary, mainwindow); return; } mainwindow.booklist.remove_book(book); delete book; } void Controller::on_dialog_any_cancel_clicked(Gtk::Dialog* dialog) { delete dialog; } void Controller::on_diskstorage_signal_book_loaded(Book* book) { #ifdef _DEBUG_ printf("Controller::on_diskstorage_signal_book_loaded(): Called.\n"); #endif mainwindow.booklist.insert_book(book); } bibshelf-1.6.0/src/DialogBookDelete.h0000644000175000017500000000350411105623241014307 00000000000000/* * 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 Library 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. */ #ifndef _DIALOGBOOKDELETE_H #define _DIALOGBOOKDELETE_H #include #include #include #include "Book.h" #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) enum DIALOG_RESPONSES { DIALOGBOOKDELETE_RESPONSE_CANCEL, DIALOGBOOKDELETE_RESPONSE_DELETE }; class DialogBookDelete : public Gtk::Dialog { public: DialogBookDelete(Book* book, Gtk::Window &parent); /* Emitted whenever the "Cancel" button was clicked. */ SigC::Signal1 signal_button_cancel_clicked; /* Emitted whenever the "Delete" button was clicked. */ SigC::Signal2 signal_button_delete_clicked; protected: void on_signal_response(int response); Book* book; Gtk::HBox hbox_main; Gtk::VBox vbox_icon; Gtk::Image image_question; Gtk::Fixed fixed_icon; Gtk::Label label_question; Gtk::Button button_cancel; Gtk::Button button_delete; Gtk::HBox hbox_delete; Gtk::Image image_delete; Gtk::Label label_delete; }; #endif /* _DIALOGBOOKDELETE_H */ bibshelf-1.6.0/src/DialogBookEditor.h0000644000175000017500000000711211105623241014332 00000000000000/* * 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 Library 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. */ #ifndef _DIALOGBOOKEDITOR_H #define _DIALOGBOOKEDITOR_H #include #include #include #include "Book.h" #include "DialogCalendar.h" #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) using namespace std; class DialogBookEditor : public Gtk::Window { public: DialogBookEditor(Book* book); virtual ~DialogBookEditor(); /* Emitted when the "Cancel" button has been clicked. */ SigC::Signal2 signal_button_cancel_clicked; /* Emitted when the "Save" button has been clicked. */ SigC::Signal2 signal_button_save_clicked; /* Returns a pointer to the book associated with this window. */ Book* get_book(void); protected: /* Called, whenever the "Title" field has changed. */ void on_entry_title_changed(void); /* Called, whenever the readdate button has been clicked. */ void on_button_readdate_clicked(void); /* Called, whenever the readdate in the calendar has been changed. */ void on_calendar_readdate_selected(void); /* Called, whenever the readdate in the calendar has been doubleclicked. */ void on_calendar_readdate_doubleclicked(void); /* Called, whenever the "Cancel" button has been clicked. */ void on_button_cancel_clicked(void); /* Called, whenever the "Save" button has been clicked. */ void on_button_save_clicked(void); /* Called, when the window was closed using the window manager. */ bool on_window_delete_event(GdkEventAny* trash); /* Called, whenever some part of the window requires a redraw. */ bool on_window_expose_event(GdkEventExpose* trash); Book* book; DialogCalendar calendar; sigc::connection calendar_signal_selected; Gtk::Table table; // Entry boxes Gtk::Label label_author; Gtk::Entry entry_author; Gtk::Label label_title; Gtk::Entry entry_title; Gtk::Label label_isbn; Gtk::Entry entry_isbn; Gtk::Label label_category; Gtk::ComboBoxEntryText combo_category; Gtk::Label label_rating; Gtk::ComboBoxText combo_rating; // Read date Gtk::Label label_readdate; Gtk::HBox hbox_readdate; Gtk::Entry entry_readdate; Gtk::Button button_readdate; Gtk::Image image_readdate; // Summary Gtk::Label label_summary; Gtk::TextView text_summary; Gtk::ScrolledWindow scroll_summary; // Review Gtk::Label label_review; Gtk::TextView text_review; Gtk::ScrolledWindow scroll_review; Gtk::HBox buttonbox; Gtk::Fixed fixed; Gtk::Button button_cancel; Gtk::Button button_save; }; #endif /* _DIALOGBOOKEDITOR_H */ bibshelf-1.6.0/src/Makefile.am0000644000175000017500000000174611105623241013043 00000000000000## Process this file with automake to produce Makefile.in ## Created by Anjuta AM_CPPFLAGS = \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DPACKAGE_SRC_DIR=\""$(srcdir)"\" \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ $(BIBSHELF_CFLAGS) AM_CFLAGS =\ -Wall\ -g bin_PROGRAMS = bibshelf bibshelf_SOURCES = \ main.cc \ Book.cc \ Book.h \ Controller.cc \ Controller.h \ DialogAbout.cc \ DialogAbout.h \ DialogBook.cc \ DialogBook.h \ DialogBookDelete.cc \ DialogBookDelete.h \ DialogBookEditor.cc \ DialogBookEditor.h \ DialogCalendar.cc \ DialogCalendar.h \ DialogError.cc \ DialogError.h \ DialogMain.cc \ DialogMain.h \ DiskStorage.cc \ DiskStorage.h \ GtkBookList.cc \ GtkBookList.h \ NetStorage.cc \ NetStorage.h \ ../pixmaps/Makefile.am bibshelf_CXXFLAGS = \ -DPACKAGE_PIXMAPS_DIR=\""$(datadir)/bibshelf"\" bibshelf_LDFLAGS = bibshelf_LDADD = $(BIBSHELF_LIBS) EXTRA_DIST = $(glade_DATA) bibshelf-1.6.0/src/DialogError.h0000644000175000017500000000246411123467402013374 00000000000000/* * 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 Library 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. */ #ifndef _DIALOGERROR_H #define _DIALOGERROR_H #include #include #include #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) using namespace std; class DialogError : public Gtk::Dialog { public: DialogError(string primary, string secondary, Gtk::Window &parent); protected: void on_signal_response(int response); Gtk::HBox hbox_main; Gtk::VBox vbox_icon; Gtk::Image image_question; Gtk::Fixed fixed_icon; Gtk::Label label_question; }; #endif /* _DIALOGERROR_H */ bibshelf-1.6.0/src/NetStorage.h0000644000175000017500000000324611105623241013230 00000000000000/* * 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 Library 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. */ #ifndef _NETSTORAGE_H #define _NETSTORAGE_H #include #include #include #include #include #include #include "Book.h" using namespace std; #define NETSTORAGE_BUFFER_MAX 50000 enum NETSTORAGE_ERRORS { NETSTORAGE_ERROR_LIBCURL, NETSTORAGE_ERROR_MISSING_FIELDS, NETSTORAGE_ERROR_SERVER_ERROR }; class NetStorage { public: NetStorage(string proxy = ""); ~NetStorage(); /* Receives a list of all books from the server, that match the criterias * given in "search" and stores the result in "results". */ int find_book(Book* search, vector& results); /* Defines the base url. */ void set_baseurl(string url); /* Defines, which proxy to use. */ void set_proxy(string proxy); protected: /* Fetches the given url and returns it as a string. */ int get_url(string url, char* buffer); string baseurl; CURL* curl; }; #endif /* _NETSTORAGE_H */ bibshelf-1.6.0/src/DialogAbout.cc0000644000175000017500000000317611105623241013507 00000000000000/* The Cantus project. * (c)2002, 2003, 2004 by Samuel Abels (spam debain org) * This project's homepage is: http://www.debain.org/cantus * * 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 */ #ifdef HAVE_CONFIG_H # include #endif #include "DialogAbout.h" DialogAbout::DialogAbout(void) { std::vector authors; authors.push_back("Samuel Abels "); set_name("BibShelf"); set_authors(authors); set_version(VERSION); set_translator_credits(_("translator_credits")); set_license(_("BibShelf was written and published under the terms" " of the GPL (General Public License V2)\n" "The application name was chosen by TheWalrus.")); string copyright; copyright.append(_("Copyright 2004. All rights reserved.")); copyright.append("\nhttp://www.debain.org"); set_copyright(copyright); //button->signal_clicked().connect(sigc::mem_fun(*this, &DialogAbout::hide)); } DialogAbout::~DialogAbout(void) { } bibshelf-1.6.0/src/DialogError.cc0000644000175000017500000000356511105623241013530 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DialogError.h" DialogError::DialogError(string primary, string secondary, Gtk::Window &parent) : image_question(Gtk::Stock::DIALOG_ERROR, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG)), label_question("", 0, 0) { set_transient_for(parent); set_title(""); label_question.set_markup("" + primary + "\n\n" + secondary); label_question.set_line_wrap(); label_question.set_selectable(); vbox_icon.pack_start(image_question, FALSE, FALSE); vbox_icon.pack_start(fixed_icon, TRUE, TRUE); hbox_main.set_border_width(12); hbox_main.set_spacing(12); hbox_main.pack_start(vbox_icon, FALSE, FALSE); hbox_main.pack_start(label_question, TRUE, TRUE); get_vbox()->pack_start(hbox_main, FALSE, FALSE); add_button(Gtk::Stock::CLOSE, 0); show_all(); signal_response().connect( sigc::mem_fun(*this, &DialogError::on_signal_response)); } void DialogError::on_signal_response(int response) { delete this; } bibshelf-1.6.0/src/NetStorage.cc0000644000175000017500000000525511105623241013370 00000000000000#include "NetStorage.h" //#define _DEBUG_ static size_t receiver(void* ptr, size_t size, size_t nmemb, char* buffer) { int buflen = strlen(buffer); int len = size * nmemb; if (buflen + len > NETSTORAGE_BUFFER_MAX) return 0; memcpy(buffer + buflen, (char*)ptr, len); buffer[buflen + len] = 0; return len; } NetStorage::NetStorage(string proxy) : curl(0) { #ifdef _DEBUG_ printf("NetStorage::NetStorage(): Called.\n"); #endif curl = curl_easy_init(); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, receiver); curl_easy_setopt(curl, CURLOPT_AUTOREFERER, (void*)1); //curl_easy_setopt(curl, CURLOPT_BUFFERSIZE, NETSTORAGE_BUFFER_MAX); set_proxy(proxy); } NetStorage::~NetStorage() { #ifdef _DEBUG_ printf("NetStorage::~NetStorage(): Called.\n"); #endif curl_easy_cleanup(curl); } void NetStorage::set_baseurl(string url) { #ifdef _DEBUG_ printf("NetStorage::set_baseurl(): %s\n", url.c_str()); #endif if (url[url.length()] != '/') url.append("/"); baseurl = url; } void NetStorage::set_proxy(string proxy) { #ifdef _DEBUG_ printf("NetStorage::set_proxy(): %s\n", proxy.c_str()); #endif curl_easy_setopt(curl, CURLOPT_PROXY, proxy.c_str()); //curl_easy_setopt(curl, CURLOPT_PROXYPORT, port); //curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); //curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5); } int NetStorage::find_book(Book* search, vector& results) { #ifdef _DEBUG_ printf("NetStorage::find_book(): %s\n", search->get_title().c_str()); #endif // Generate a proper URL for the request. string url = baseurl; if (search->get_author() != "") url.append("author=" + search->get_author() + "&"); if (search->get_title() != "") url.append("title=" + search->get_title()); // Request and receive the book from the server. char received[NETSTORAGE_BUFFER_MAX]; memset(&received, 0, sizeof(received)); int err = get_url(url, received); if (err != 0) return NETSTORAGE_ERROR_LIBCURL; //FIXME: Be more specific. // Check for server errors. if (strcmp(received, "Error 001:") == 0) return NETSTORAGE_ERROR_MISSING_FIELDS; if (strcmp(received, "Error 002:") == 0 || strcmp(received, "Error 003:") == 0) return NETSTORAGE_ERROR_SERVER_ERROR; //FIXME: Parse XML. { Book* book = new Book; results.push_back(book); } return 0; } int NetStorage::get_url(string url, char* buffer) { #ifdef _DEBUG_ printf("NetStorage::get_url(): %s\n", url.c_str()); #endif curl_easy_setopt(curl, CURLOPT_WRITEDATA, buffer); curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); return curl_easy_perform(curl); } bibshelf-1.6.0/src/Makefile.in0000644000175000017500000011765411132460413013062 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : bin_PROGRAMS = bibshelf$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = am__installdirs = "$(DESTDIR)$(bindir)" binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_bibshelf_OBJECTS = bibshelf-main.$(OBJEXT) bibshelf-Book.$(OBJEXT) \ bibshelf-Controller.$(OBJEXT) bibshelf-DialogAbout.$(OBJEXT) \ bibshelf-DialogBook.$(OBJEXT) \ bibshelf-DialogBookDelete.$(OBJEXT) \ bibshelf-DialogBookEditor.$(OBJEXT) \ bibshelf-DialogCalendar.$(OBJEXT) \ bibshelf-DialogError.$(OBJEXT) bibshelf-DialogMain.$(OBJEXT) \ bibshelf-DiskStorage.$(OBJEXT) bibshelf-GtkBookList.$(OBJEXT) \ bibshelf-NetStorage.$(OBJEXT) bibshelf_OBJECTS = $(am_bibshelf_OBJECTS) am__DEPENDENCIES_1 = bibshelf_DEPENDENCIES = $(am__DEPENDENCIES_1) bibshelf_LINK = $(CXXLD) $(bibshelf_CXXFLAGS) $(CXXFLAGS) \ $(bibshelf_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(bibshelf_SOURCES) DIST_SOURCES = $(bibshelf_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BIBSHELF_CFLAGS = @BIBSHELF_CFLAGS@ BIBSHELF_LIBS = @BIBSHELF_LIBS@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_PIXMAPS_DIR = @PACKAGE_PIXMAPS_DIR@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DPACKAGE_SRC_DIR=\""$(srcdir)"\" \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ $(BIBSHELF_CFLAGS) AM_CFLAGS = \ -Wall\ -g bibshelf_SOURCES = \ main.cc \ Book.cc \ Book.h \ Controller.cc \ Controller.h \ DialogAbout.cc \ DialogAbout.h \ DialogBook.cc \ DialogBook.h \ DialogBookDelete.cc \ DialogBookDelete.h \ DialogBookEditor.cc \ DialogBookEditor.h \ DialogCalendar.cc \ DialogCalendar.h \ DialogError.cc \ DialogError.h \ DialogMain.cc \ DialogMain.h \ DiskStorage.cc \ DiskStorage.h \ GtkBookList.cc \ GtkBookList.h \ NetStorage.cc \ NetStorage.h \ ../pixmaps/Makefile.am bibshelf_CXXFLAGS = \ -DPACKAGE_PIXMAPS_DIR=\""$(datadir)/bibshelf"\" bibshelf_LDFLAGS = bibshelf_LDADD = $(BIBSHELF_LIBS) EXTRA_DIST = $(glade_DATA) all: all-am .SUFFIXES: .SUFFIXES: .cc .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) bibshelf$(EXEEXT): $(bibshelf_OBJECTS) $(bibshelf_DEPENDENCIES) @rm -f bibshelf$(EXEEXT) $(bibshelf_LINK) $(bibshelf_OBJECTS) $(bibshelf_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-Book.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-Controller.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-DialogAbout.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-DialogBook.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-DialogBookDelete.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-DialogBookEditor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-DialogCalendar.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-DialogError.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-DialogMain.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-DiskStorage.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-GtkBookList.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-NetStorage.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibshelf-main.Po@am__quote@ .cc.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` bibshelf-main.o: main.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-main.o -MD -MP -MF $(DEPDIR)/bibshelf-main.Tpo -c -o bibshelf-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-main.Tpo $(DEPDIR)/bibshelf-main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main.cc' object='bibshelf-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc bibshelf-main.obj: main.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-main.obj -MD -MP -MF $(DEPDIR)/bibshelf-main.Tpo -c -o bibshelf-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-main.Tpo $(DEPDIR)/bibshelf-main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main.cc' object='bibshelf-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi` bibshelf-Book.o: Book.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-Book.o -MD -MP -MF $(DEPDIR)/bibshelf-Book.Tpo -c -o bibshelf-Book.o `test -f 'Book.cc' || echo '$(srcdir)/'`Book.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-Book.Tpo $(DEPDIR)/bibshelf-Book.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Book.cc' object='bibshelf-Book.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-Book.o `test -f 'Book.cc' || echo '$(srcdir)/'`Book.cc bibshelf-Book.obj: Book.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-Book.obj -MD -MP -MF $(DEPDIR)/bibshelf-Book.Tpo -c -o bibshelf-Book.obj `if test -f 'Book.cc'; then $(CYGPATH_W) 'Book.cc'; else $(CYGPATH_W) '$(srcdir)/Book.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-Book.Tpo $(DEPDIR)/bibshelf-Book.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Book.cc' object='bibshelf-Book.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-Book.obj `if test -f 'Book.cc'; then $(CYGPATH_W) 'Book.cc'; else $(CYGPATH_W) '$(srcdir)/Book.cc'; fi` bibshelf-Controller.o: Controller.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-Controller.o -MD -MP -MF $(DEPDIR)/bibshelf-Controller.Tpo -c -o bibshelf-Controller.o `test -f 'Controller.cc' || echo '$(srcdir)/'`Controller.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-Controller.Tpo $(DEPDIR)/bibshelf-Controller.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Controller.cc' object='bibshelf-Controller.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-Controller.o `test -f 'Controller.cc' || echo '$(srcdir)/'`Controller.cc bibshelf-Controller.obj: Controller.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-Controller.obj -MD -MP -MF $(DEPDIR)/bibshelf-Controller.Tpo -c -o bibshelf-Controller.obj `if test -f 'Controller.cc'; then $(CYGPATH_W) 'Controller.cc'; else $(CYGPATH_W) '$(srcdir)/Controller.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-Controller.Tpo $(DEPDIR)/bibshelf-Controller.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Controller.cc' object='bibshelf-Controller.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-Controller.obj `if test -f 'Controller.cc'; then $(CYGPATH_W) 'Controller.cc'; else $(CYGPATH_W) '$(srcdir)/Controller.cc'; fi` bibshelf-DialogAbout.o: DialogAbout.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogAbout.o -MD -MP -MF $(DEPDIR)/bibshelf-DialogAbout.Tpo -c -o bibshelf-DialogAbout.o `test -f 'DialogAbout.cc' || echo '$(srcdir)/'`DialogAbout.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogAbout.Tpo $(DEPDIR)/bibshelf-DialogAbout.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogAbout.cc' object='bibshelf-DialogAbout.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogAbout.o `test -f 'DialogAbout.cc' || echo '$(srcdir)/'`DialogAbout.cc bibshelf-DialogAbout.obj: DialogAbout.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogAbout.obj -MD -MP -MF $(DEPDIR)/bibshelf-DialogAbout.Tpo -c -o bibshelf-DialogAbout.obj `if test -f 'DialogAbout.cc'; then $(CYGPATH_W) 'DialogAbout.cc'; else $(CYGPATH_W) '$(srcdir)/DialogAbout.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogAbout.Tpo $(DEPDIR)/bibshelf-DialogAbout.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogAbout.cc' object='bibshelf-DialogAbout.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogAbout.obj `if test -f 'DialogAbout.cc'; then $(CYGPATH_W) 'DialogAbout.cc'; else $(CYGPATH_W) '$(srcdir)/DialogAbout.cc'; fi` bibshelf-DialogBook.o: DialogBook.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogBook.o -MD -MP -MF $(DEPDIR)/bibshelf-DialogBook.Tpo -c -o bibshelf-DialogBook.o `test -f 'DialogBook.cc' || echo '$(srcdir)/'`DialogBook.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogBook.Tpo $(DEPDIR)/bibshelf-DialogBook.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogBook.cc' object='bibshelf-DialogBook.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogBook.o `test -f 'DialogBook.cc' || echo '$(srcdir)/'`DialogBook.cc bibshelf-DialogBook.obj: DialogBook.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogBook.obj -MD -MP -MF $(DEPDIR)/bibshelf-DialogBook.Tpo -c -o bibshelf-DialogBook.obj `if test -f 'DialogBook.cc'; then $(CYGPATH_W) 'DialogBook.cc'; else $(CYGPATH_W) '$(srcdir)/DialogBook.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogBook.Tpo $(DEPDIR)/bibshelf-DialogBook.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogBook.cc' object='bibshelf-DialogBook.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogBook.obj `if test -f 'DialogBook.cc'; then $(CYGPATH_W) 'DialogBook.cc'; else $(CYGPATH_W) '$(srcdir)/DialogBook.cc'; fi` bibshelf-DialogBookDelete.o: DialogBookDelete.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogBookDelete.o -MD -MP -MF $(DEPDIR)/bibshelf-DialogBookDelete.Tpo -c -o bibshelf-DialogBookDelete.o `test -f 'DialogBookDelete.cc' || echo '$(srcdir)/'`DialogBookDelete.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogBookDelete.Tpo $(DEPDIR)/bibshelf-DialogBookDelete.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogBookDelete.cc' object='bibshelf-DialogBookDelete.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogBookDelete.o `test -f 'DialogBookDelete.cc' || echo '$(srcdir)/'`DialogBookDelete.cc bibshelf-DialogBookDelete.obj: DialogBookDelete.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogBookDelete.obj -MD -MP -MF $(DEPDIR)/bibshelf-DialogBookDelete.Tpo -c -o bibshelf-DialogBookDelete.obj `if test -f 'DialogBookDelete.cc'; then $(CYGPATH_W) 'DialogBookDelete.cc'; else $(CYGPATH_W) '$(srcdir)/DialogBookDelete.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogBookDelete.Tpo $(DEPDIR)/bibshelf-DialogBookDelete.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogBookDelete.cc' object='bibshelf-DialogBookDelete.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogBookDelete.obj `if test -f 'DialogBookDelete.cc'; then $(CYGPATH_W) 'DialogBookDelete.cc'; else $(CYGPATH_W) '$(srcdir)/DialogBookDelete.cc'; fi` bibshelf-DialogBookEditor.o: DialogBookEditor.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogBookEditor.o -MD -MP -MF $(DEPDIR)/bibshelf-DialogBookEditor.Tpo -c -o bibshelf-DialogBookEditor.o `test -f 'DialogBookEditor.cc' || echo '$(srcdir)/'`DialogBookEditor.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogBookEditor.Tpo $(DEPDIR)/bibshelf-DialogBookEditor.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogBookEditor.cc' object='bibshelf-DialogBookEditor.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogBookEditor.o `test -f 'DialogBookEditor.cc' || echo '$(srcdir)/'`DialogBookEditor.cc bibshelf-DialogBookEditor.obj: DialogBookEditor.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogBookEditor.obj -MD -MP -MF $(DEPDIR)/bibshelf-DialogBookEditor.Tpo -c -o bibshelf-DialogBookEditor.obj `if test -f 'DialogBookEditor.cc'; then $(CYGPATH_W) 'DialogBookEditor.cc'; else $(CYGPATH_W) '$(srcdir)/DialogBookEditor.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogBookEditor.Tpo $(DEPDIR)/bibshelf-DialogBookEditor.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogBookEditor.cc' object='bibshelf-DialogBookEditor.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogBookEditor.obj `if test -f 'DialogBookEditor.cc'; then $(CYGPATH_W) 'DialogBookEditor.cc'; else $(CYGPATH_W) '$(srcdir)/DialogBookEditor.cc'; fi` bibshelf-DialogCalendar.o: DialogCalendar.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogCalendar.o -MD -MP -MF $(DEPDIR)/bibshelf-DialogCalendar.Tpo -c -o bibshelf-DialogCalendar.o `test -f 'DialogCalendar.cc' || echo '$(srcdir)/'`DialogCalendar.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogCalendar.Tpo $(DEPDIR)/bibshelf-DialogCalendar.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogCalendar.cc' object='bibshelf-DialogCalendar.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogCalendar.o `test -f 'DialogCalendar.cc' || echo '$(srcdir)/'`DialogCalendar.cc bibshelf-DialogCalendar.obj: DialogCalendar.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogCalendar.obj -MD -MP -MF $(DEPDIR)/bibshelf-DialogCalendar.Tpo -c -o bibshelf-DialogCalendar.obj `if test -f 'DialogCalendar.cc'; then $(CYGPATH_W) 'DialogCalendar.cc'; else $(CYGPATH_W) '$(srcdir)/DialogCalendar.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogCalendar.Tpo $(DEPDIR)/bibshelf-DialogCalendar.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogCalendar.cc' object='bibshelf-DialogCalendar.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogCalendar.obj `if test -f 'DialogCalendar.cc'; then $(CYGPATH_W) 'DialogCalendar.cc'; else $(CYGPATH_W) '$(srcdir)/DialogCalendar.cc'; fi` bibshelf-DialogError.o: DialogError.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogError.o -MD -MP -MF $(DEPDIR)/bibshelf-DialogError.Tpo -c -o bibshelf-DialogError.o `test -f 'DialogError.cc' || echo '$(srcdir)/'`DialogError.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogError.Tpo $(DEPDIR)/bibshelf-DialogError.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogError.cc' object='bibshelf-DialogError.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogError.o `test -f 'DialogError.cc' || echo '$(srcdir)/'`DialogError.cc bibshelf-DialogError.obj: DialogError.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogError.obj -MD -MP -MF $(DEPDIR)/bibshelf-DialogError.Tpo -c -o bibshelf-DialogError.obj `if test -f 'DialogError.cc'; then $(CYGPATH_W) 'DialogError.cc'; else $(CYGPATH_W) '$(srcdir)/DialogError.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogError.Tpo $(DEPDIR)/bibshelf-DialogError.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogError.cc' object='bibshelf-DialogError.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogError.obj `if test -f 'DialogError.cc'; then $(CYGPATH_W) 'DialogError.cc'; else $(CYGPATH_W) '$(srcdir)/DialogError.cc'; fi` bibshelf-DialogMain.o: DialogMain.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogMain.o -MD -MP -MF $(DEPDIR)/bibshelf-DialogMain.Tpo -c -o bibshelf-DialogMain.o `test -f 'DialogMain.cc' || echo '$(srcdir)/'`DialogMain.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogMain.Tpo $(DEPDIR)/bibshelf-DialogMain.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogMain.cc' object='bibshelf-DialogMain.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogMain.o `test -f 'DialogMain.cc' || echo '$(srcdir)/'`DialogMain.cc bibshelf-DialogMain.obj: DialogMain.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DialogMain.obj -MD -MP -MF $(DEPDIR)/bibshelf-DialogMain.Tpo -c -o bibshelf-DialogMain.obj `if test -f 'DialogMain.cc'; then $(CYGPATH_W) 'DialogMain.cc'; else $(CYGPATH_W) '$(srcdir)/DialogMain.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DialogMain.Tpo $(DEPDIR)/bibshelf-DialogMain.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DialogMain.cc' object='bibshelf-DialogMain.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DialogMain.obj `if test -f 'DialogMain.cc'; then $(CYGPATH_W) 'DialogMain.cc'; else $(CYGPATH_W) '$(srcdir)/DialogMain.cc'; fi` bibshelf-DiskStorage.o: DiskStorage.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DiskStorage.o -MD -MP -MF $(DEPDIR)/bibshelf-DiskStorage.Tpo -c -o bibshelf-DiskStorage.o `test -f 'DiskStorage.cc' || echo '$(srcdir)/'`DiskStorage.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DiskStorage.Tpo $(DEPDIR)/bibshelf-DiskStorage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DiskStorage.cc' object='bibshelf-DiskStorage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DiskStorage.o `test -f 'DiskStorage.cc' || echo '$(srcdir)/'`DiskStorage.cc bibshelf-DiskStorage.obj: DiskStorage.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-DiskStorage.obj -MD -MP -MF $(DEPDIR)/bibshelf-DiskStorage.Tpo -c -o bibshelf-DiskStorage.obj `if test -f 'DiskStorage.cc'; then $(CYGPATH_W) 'DiskStorage.cc'; else $(CYGPATH_W) '$(srcdir)/DiskStorage.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-DiskStorage.Tpo $(DEPDIR)/bibshelf-DiskStorage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='DiskStorage.cc' object='bibshelf-DiskStorage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-DiskStorage.obj `if test -f 'DiskStorage.cc'; then $(CYGPATH_W) 'DiskStorage.cc'; else $(CYGPATH_W) '$(srcdir)/DiskStorage.cc'; fi` bibshelf-GtkBookList.o: GtkBookList.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-GtkBookList.o -MD -MP -MF $(DEPDIR)/bibshelf-GtkBookList.Tpo -c -o bibshelf-GtkBookList.o `test -f 'GtkBookList.cc' || echo '$(srcdir)/'`GtkBookList.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-GtkBookList.Tpo $(DEPDIR)/bibshelf-GtkBookList.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GtkBookList.cc' object='bibshelf-GtkBookList.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-GtkBookList.o `test -f 'GtkBookList.cc' || echo '$(srcdir)/'`GtkBookList.cc bibshelf-GtkBookList.obj: GtkBookList.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-GtkBookList.obj -MD -MP -MF $(DEPDIR)/bibshelf-GtkBookList.Tpo -c -o bibshelf-GtkBookList.obj `if test -f 'GtkBookList.cc'; then $(CYGPATH_W) 'GtkBookList.cc'; else $(CYGPATH_W) '$(srcdir)/GtkBookList.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-GtkBookList.Tpo $(DEPDIR)/bibshelf-GtkBookList.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='GtkBookList.cc' object='bibshelf-GtkBookList.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-GtkBookList.obj `if test -f 'GtkBookList.cc'; then $(CYGPATH_W) 'GtkBookList.cc'; else $(CYGPATH_W) '$(srcdir)/GtkBookList.cc'; fi` bibshelf-NetStorage.o: NetStorage.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-NetStorage.o -MD -MP -MF $(DEPDIR)/bibshelf-NetStorage.Tpo -c -o bibshelf-NetStorage.o `test -f 'NetStorage.cc' || echo '$(srcdir)/'`NetStorage.cc @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-NetStorage.Tpo $(DEPDIR)/bibshelf-NetStorage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='NetStorage.cc' object='bibshelf-NetStorage.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-NetStorage.o `test -f 'NetStorage.cc' || echo '$(srcdir)/'`NetStorage.cc bibshelf-NetStorage.obj: NetStorage.cc @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -MT bibshelf-NetStorage.obj -MD -MP -MF $(DEPDIR)/bibshelf-NetStorage.Tpo -c -o bibshelf-NetStorage.obj `if test -f 'NetStorage.cc'; then $(CYGPATH_W) 'NetStorage.cc'; else $(CYGPATH_W) '$(srcdir)/NetStorage.cc'; fi` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/bibshelf-NetStorage.Tpo $(DEPDIR)/bibshelf-NetStorage.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='NetStorage.cc' object='bibshelf-NetStorage.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(bibshelf_CXXFLAGS) $(CXXFLAGS) -c -o bibshelf-NetStorage.obj `if test -f 'NetStorage.cc'; then $(CYGPATH_W) 'NetStorage.cc'; else $(CYGPATH_W) '$(srcdir)/NetStorage.cc'; fi` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-exec-am: install-binPROGRAMS install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic ctags distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: bibshelf-1.6.0/src/DiskStorage.cc0000644000175000017500000002205111123467724013541 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DiskStorage.h" #include //#define _DEBUG_ static string fileescape(string s) { int i; for (i = 0; s[i]; i++) { switch (s[i]) { case '/': case '\\': case '*': case '?': case '[': case ']': case '{': case '}': s[i] = '&'; break; } } return s; } DiskStorage::DiskStorage() { } DiskStorage::~DiskStorage() { } int DiskStorage::init(string pdirectory) { directory = pdirectory; // Check whether the given directory does already exist and create it // otherwise. struct stat filestat; if (stat(directory.c_str(), &filestat) == -1 || S_ISDIR(filestat.st_mode) == 0) if (mkdir(directory.c_str(), S_IRWXU) == -1) return STORAGE_ERROR_MAKEDIR_FAILED; return 0; } int DiskStorage::load_all(void) { #ifdef _DEBUG_ printf("DiskStorage::load_all(): Called.\n"); #endif return load_all_recursive(directory); } int DiskStorage::load_all_recursive(string directory) { #ifdef _DEBUG_ printf("DiskStorage::load_all_recursive(): %s\n", directory.c_str()); #endif DIR* stream = NULL; struct dirent* filestruct = NULL; struct stat filestat; string fullfilename; // Recursively walk through all files in the current directory and load // every valid book. if (!(stream = opendir(directory.c_str()))) { // Open the directory. printf("GtkFileList::update_hard(): Path open failed. %s\n", directory.c_str()); return STORAGE_ERROR_DIR_OPEN_FAILED; } while ((filestruct = readdir(stream)) != NULL) { // Walk through all files. if (strcmp(filestruct->d_name, ".") == 0 || strcmp(filestruct->d_name, "..") == 0) continue; // Create a full path. fullfilename = directory + filestruct->d_name; // Stat the file. if (stat(fullfilename.c_str(), &filestat) == -1) continue; // If it is a directory, recurse. if (S_ISDIR(filestat.st_mode) != 0) { load_all_recursive(fullfilename + "/"); continue; } // Make sure that the filename ends with ".book". //FIXME!! // Load the file. Book *book = new Book; load_book(fullfilename, book); } closedir(stream); return 0; } int DiskStorage::save_book(Book* book) { try { xmlpp::Document xml; // Declare the namespace and uses its prefix for this node. xmlpp::Element* rootnode = xml.create_root_node("bookroot", "http://www.debain.org/", "book"); // Add the author. xmlpp::Element* elem = rootnode->add_child("author"); elem->set_child_text(book->get_author()); // Add the book title. elem = rootnode->add_child("title"); elem->set_child_text(book->get_title()); // Add the isbn number. elem = rootnode->add_child("isbn"); elem->set_child_text(book->get_isbn()); // Add the category name. elem = rootnode->add_child("category"); elem->set_child_text(book->get_category()); // Add the summary. elem = rootnode->add_child("summary"); elem->set_child_text(book->get_summary()); // Add the review. elem = rootnode->add_child("review"); elem->set_child_text(book->get_review()); // Add the rating. elem = rootnode->add_child("rating"); char rating[3]; snprintf(rating, 3, "%i", book->get_rating()); elem->set_child_text(rating); // Add the readdate. struct tm date = book->get_readdate(); struct tm undefined; memset(&undefined, 0, sizeof(tm)); if (memcmp(&date, &undefined, sizeof(tm)) != 0) { char year[5], month[3], day[3]; snprintf(year, 5, "%i", date.tm_year + 1900); snprintf(month, 3, "%i", date.tm_mon); snprintf(day, 3, "%i", date.tm_mday); elem = rootnode->add_child("readdate"); elem->set_attribute("year", year); elem->set_attribute("month", month); elem->set_attribute("day", day); } // Generate a directory for the file (if necessary). string subdir = directory + fileescape(book->get_author()) + "/"; struct stat filestat; if (stat(subdir.c_str(), &filestat) == -1 || S_ISDIR(filestat.st_mode) == 0) if (mkdir(subdir.c_str(), S_IRWXU) == -1) return STORAGE_ERROR_MAKEDIR_FAILED; // Generate the filename from the book title. string filename = subdir + fileescape(book->get_title()) + ".book"; // Write do disk. xml.write_to_file(filename); // If the file has been saved using a different name last time, remove the // old file now. if (book->get_filename() != "" && book->get_filename() != filename) { if (remove(book->get_filename().c_str()) == -1) { book->set_filename(filename); return STORAGE_ERROR_FILE_DELETE_FAILED; } } book->set_filename(filename); } catch(const exception& ex) { cout << "Exception caught: " << ex.what() << endl; return STORAGE_ERROR_XML_EXCEPTION; } return 0; } int DiskStorage::delete_book(Book* book) { if (remove(book->get_filename().c_str()) == -1) return STORAGE_ERROR_FILE_DELETE_FAILED; return 0; } int DiskStorage::load_book(string filename, Book* book) { #ifdef _DEBUG_ printf("DiskStorage::load_book(): Loading %s\n", filename.c_str()); #endif xmlpp::DomParser parser; try { //parser.set_validate(); parser.set_substitute_entities(); // Automatically resolve/unescape text. parser.parse_file(filename); } catch(const exception& ex) { cout << "Exception caught: " << ex.what() << endl; return STORAGE_ERROR_XML_EXCEPTION; } if (!parser) return STORAGE_ERROR_XML; // Ok, so everything worked fine. // Copy the data from the tree into the book. book->set_filename(filename); const xmlpp::Node* xml_root = parser.get_document()->get_root_node(); int err = xml2book(xml_root, book); signal_book_loaded.emit(book); return err; } int DiskStorage::xml2book(const xmlpp::Node* node, Book* book) { const xmlpp::Element* elem = dynamic_cast(node); const xmlpp::ContentNode* contentnode = dynamic_cast(node); #ifdef _DEBUG_ if (contentnode) cout << node->get_path() + ": " + contentnode->get_content() << endl; #endif if (contentnode && contentnode->get_path() == "/book:bookroot/author/text()") book->set_author(contentnode->get_content()); else if (contentnode && contentnode->get_path() == "/book:bookroot/title/text()") book->set_title(contentnode->get_content()); else if (contentnode && contentnode->get_path() == "/book:bookroot/isbn/text()") book->set_isbn(contentnode->get_content()); else if (contentnode && contentnode->get_path() == "/book:bookroot/category/text()") book->set_category(contentnode->get_content()); else if (contentnode && contentnode->get_path() == "/book:bookroot/summary/text()") book->set_summary(contentnode->get_content()); else if (contentnode && contentnode->get_path() == "/book:bookroot/review/text()") book->set_review(contentnode->get_content()); else if (contentnode && contentnode->get_path() == "/book:bookroot/rating/text()") book->set_rating(atoi(contentnode->get_content().c_str())); else if (elem && elem->get_path() == "/book:bookroot/readdate") { xmlpp::Attribute* att_year = elem->get_attribute("year"); xmlpp::Attribute* att_month = elem->get_attribute("month"); xmlpp::Attribute* att_day = elem->get_attribute("day"); string year = att_year->get_value(); string month = att_month->get_value(); string day = att_day->get_value(); struct tm date; memset(&date, 0, sizeof(tm)); date.tm_year = atoi(year.c_str()); date.tm_mon = atoi(month.c_str()); date.tm_mday = atoi(day.c_str()); #ifdef _DEBUG_ printf("Date: %i/%i/%i\n", date.tm_year, date.tm_mon, date.tm_mday); #endif book->set_readdate(date.tm_year, date.tm_mon, date.tm_mday); } // Walk through all child nodes (recurse). xmlpp::Node::NodeList list = node->get_children(); for (xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); iter++) xml2book(*iter, book); return 0; } bibshelf-1.6.0/src/DialogBook.cc0000644000175000017500000001364411105623241013330 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DialogBook.h" //#define _DEBUG_ DialogBook::DialogBook(Book* pbook) : book(pbook), table(7, 2), label_author(_("Author:"), 0, 0.5), label_author_str("", 0, 0.5), label_title(_("Title:"), 0, 0.5), label_title_str("", 0, 0.5), label_isbn(_("ISBN:"), 0, 0.5), label_isbn_str("", 0, 0.5), label_category(_("Category:"), 0, 0.5), label_category_str("", 0, 0.5), label_rating(_("Rating:"), 0, 0.5), label_readdate(_("Read:"), 0, 0.5), label_readdate_str("", 0, 0.5), label_summary(_("Summary:"), 0, 0.5), label_summary_str("", 0, 0), label_review(_("Review:"), 0, 0.5), label_review_str("", 0, 0), label_button_edit(_("Edit Book")), image_button_edit(Gtk::Stock::JUSTIFY_LEFT, Gtk::IconSize(Gtk::ICON_SIZE_SMALL_TOOLBAR)), button_close(Gtk::Stock::CLOSE) { set_size_request(450, -1); table.set_row_spacings(3); table.set_col_spacings(12); table.set_border_width(12); add(table); string title = book->get_title(); set_title(title != "" ? title : _("Unnamed Book")); // Author. table.attach(label_author, 0, 1, 0, 1, Gtk::FILL, Gtk::FILL); table.attach(label_author_str, 1, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); label_author_str.set_text(book->get_author()); label_author_str.set_selectable(TRUE); // Title. table.attach(label_title, 0, 1, 1, 2, Gtk::FILL, Gtk::FILL); table.attach(label_title_str, 1, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); label_title_str.set_text(book->get_title()); label_title_str.set_selectable(TRUE); // ISBN-Number. table.attach(label_isbn, 0, 1, 2, 3, Gtk::FILL, Gtk::FILL); table.attach(label_isbn_str, 1, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); label_isbn_str.set_text(book->get_isbn()); label_isbn_str.set_selectable(TRUE); // Category. table.attach(label_category, 0, 1, 3, 4, Gtk::FILL, Gtk::FILL); table.attach(label_category_str, 1, 2, 3, 4, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); label_category_str.set_text(book->get_category()); label_category_str.set_selectable(TRUE); // Rating. char imgfile[2000]; snprintf(imgfile, 2000, PACKAGE_PIXMAPS_DIR "/stars%i.png", book->get_rating() + 1); image_rating.set(imgfile); image_rating.set_alignment(0, 0.5); table.attach(label_rating, 0, 1, 4, 5, Gtk::FILL, Gtk::FILL); table.attach(image_rating, 1, 2, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); // Read date selector. table.attach(label_readdate, 0, 1, 5, 6, Gtk::FILL, Gtk::FILL); table.attach(label_readdate_str, 1, 2, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); label_readdate_str.set_text(book->get_readdate_string()); label_readdate_str.set_selectable(TRUE); table.set_row_spacing(5, 12); // Summary table.attach(label_summary, 0, 2, 6, 7, Gtk::FILL, Gtk::FILL); scroll_summary.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scroll_summary.set_shadow_type(Gtk::SHADOW_NONE); label_summary_str.set_line_wrap(); label_summary_str.set_selectable(TRUE); scroll_summary.add(label_summary_str); table.attach(scroll_summary, 0, 2, 7, 8); table.set_row_spacing(7, 12); label_summary_str.set_text(book->get_summary()); // Review table.attach(label_review, 0, 2, 8, 9, Gtk::FILL, Gtk::FILL); scroll_review.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scroll_review.set_shadow_type(Gtk::SHADOW_NONE); label_review_str.set_line_wrap(); label_review_str.set_selectable(TRUE); scroll_review.add(label_review_str); table.attach(scroll_review, 0, 2, 9, 10); table.set_row_spacing(9, 12); label_review_str.set_text(book->get_review()); // Buttons { buttonbox.set_spacing(12); table.attach(buttonbox, 0, 2, 10, 11, Gtk::FILL, Gtk::FILL); // Add some distance. buttonbox.pack_start(fixed, TRUE, TRUE); // "Edit". hbox_button_edit.set_spacing(3); hbox_button_edit.pack_start(image_button_edit); hbox_button_edit.pack_start(label_button_edit); button_edit.add(hbox_button_edit); button_edit.set_size_request(-1, 35); buttonbox.pack_start(button_edit, FALSE, TRUE); button_edit.signal_clicked().connect( sigc::mem_fun(*this, &DialogBook::on_button_edit_clicked)); // "Close". button_close.set_size_request(-1, 35); buttonbox.pack_start(button_close, FALSE, TRUE); button_close.signal_clicked().connect( sigc::mem_fun(*this, &DialogBook::on_button_close_clicked)); } signal_delete_event().connect( sigc::mem_fun(*this, &DialogBook::on_window_delete_event)); show_all(); } DialogBook::~DialogBook() { } Book* DialogBook::get_book(void) { return book; } void DialogBook::on_button_edit_clicked(void) { #ifdef _DEBUG_ printf("DialogBook::on_button_cancel_clicked(): Called.\n"); #endif signal_button_edit_clicked.emit(this, book); } void DialogBook::on_button_close_clicked(void) { #ifdef _DEBUG_ printf("DialogBook::on_button_save_clicked(): Called.\n"); #endif signal_button_close_clicked.emit(this, book); } bool DialogBook::on_window_delete_event(GdkEventAny* trash) { on_button_close_clicked(); return FALSE; } bibshelf-1.6.0/src/DialogBookDelete.cc0000644000175000017500000000545611105623241014455 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DialogBookDelete.h" DialogBookDelete::DialogBookDelete(Book* pbook, Gtk::Window &parent) : book(pbook), image_question(Gtk::Stock::DIALOG_QUESTION, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG)), label_question("", 0, 0), button_cancel(Gtk::Stock::CANCEL), image_delete(Gtk::Stock::DELETE, Gtk::IconSize(Gtk::ICON_SIZE_BUTTON)), label_delete(_("Delete Book")) { set_transient_for(parent); set_title(""); // Prepare the window text. char text1[2000]; char text2[2000]; snprintf(text1, 2000, "%s\n\n%s", _("Delete the book \"%s\" by \"%s\"?"), _("Deletion of a book will destroy its data and " "can not be reversed.")); snprintf(text2, 2000, text1, book->get_title().c_str(), book->get_author().c_str()); label_question.set_markup(text2); label_question.set_line_wrap(); label_question.set_selectable(); button_delete.set_size_request(-1, 35); button_delete.add(hbox_delete); hbox_delete.pack_start(image_delete); hbox_delete.pack_start(label_delete); vbox_icon.pack_start(image_question, FALSE, FALSE); vbox_icon.pack_start(fixed_icon, TRUE, TRUE); hbox_main.set_border_width(12); hbox_main.set_spacing(12); hbox_main.pack_start(vbox_icon, FALSE, FALSE); hbox_main.pack_start(label_question, TRUE, TRUE); get_vbox()->pack_start(hbox_main, FALSE, FALSE); add_action_widget(button_cancel, DIALOGBOOKDELETE_RESPONSE_CANCEL); add_action_widget(button_delete, DIALOGBOOKDELETE_RESPONSE_DELETE); show_all(); signal_response().connect( sigc::mem_fun(*this, &DialogBookDelete::on_signal_response)); } void DialogBookDelete::on_signal_response(int response) { switch (response) { case DIALOGBOOKDELETE_RESPONSE_CANCEL: signal_button_cancel_clicked.emit(this); break; case DIALOGBOOKDELETE_RESPONSE_DELETE: signal_button_delete_clicked.emit(this, book); break; } } bibshelf-1.6.0/src/DialogCalendar.h0000644000175000017500000000177711105623241014015 00000000000000/* * 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 Library 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. */ #ifndef _DIALOGCALENDAR_H #define _DIALOGCALENDAR_H #include #include using namespace std; class DialogCalendar : public Gtk::Window { public: DialogCalendar(Gtk::Window& parent); Gtk::Calendar calendar; protected: }; #endif /* _DIALOGCALENDAR_H */ bibshelf-1.6.0/src/DialogAbout.h0000644000175000017500000000241011105623241013337 00000000000000/* The Cantus project. * (c)2002, 2003, 2004 by Samuel Abels (spam debain org) * This project's homepage is: http://www.debain.org/cantus * * 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 */ #ifdef HAVE_CONFIG_H # include #endif #ifndef _DIALOG_ABOUT #define _DIALOG_ABOUT #include #include #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) using namespace std; using namespace Gtk; class DialogAbout : public Gtk::AboutDialog { public: DialogAbout(); ~DialogAbout(); protected: }; #endif /* _DIALOG_ABOUT */ bibshelf-1.6.0/src/GtkBookList.cc0000644000175000017500000001372411105623241013511 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "GtkBookList.h" //#define _DEBUG_ GtkBookList::GtkBookList() : numitems(0) { // Attach the liststore to the treeview. store = Gtk::ListStore::create(columns); store->set_sort_column_id(columns.author_and_title, Gtk::SORT_ASCENDING); set_model(store); set_rules_hint(); set_headers_visible(TRUE); set_headers_clickable(); // Load the icons. pixbuf_book = Gdk::Pixbuf::create_from_file(PACKAGE_PIXMAPS_DIR "/book.png"); pixbuf_rating.push_back( Gdk::Pixbuf::create_from_file(PACKAGE_PIXMAPS_DIR "/empty.png")); int i = 0; for (i = 0; i <= 10; i++) { char imgfile[2000]; snprintf(imgfile, 2000, PACKAGE_PIXMAPS_DIR "/stars%i.png", i); pixbuf_rating.push_back(Gdk::Pixbuf::create_from_file(imgfile)); } // Create a cell renderer and pack it into the "Author and Title" column. Gtk::TreeView::Column* col = Gtk::manage( new Gtk::TreeView::Column(_("Author and Title"))); col->pack_start(columns.icon, FALSE); col->pack_start(columns.author_and_title, TRUE); // Enable pango markup language for the text renderer and change the layout // for the icon renderer. std::vector rends = col->get_cell_renderers(); rends[0]->set_fixed_size(60, 48); col->clear_attributes(*rends[1]); col->add_attribute(*rends[1], "markup", 1); rends[1]->property_yalign() = 0.3; // Append all columns. append_column(*col); get_column(0)->set_resizable(TRUE); get_column(0)->set_sort_column_id(GTKBOOKLIST_COLUMN_AUTHORANDTITLE); append_column(_("Category"), columns.category); get_column(1)->set_resizable(TRUE); get_column(1)->set_sort_column_id(GTKBOOKLIST_COLUMN_CATEGORY); append_column(_("Read on..."), columns.readdate); get_column(2)->set_resizable(TRUE); get_column(2)->set_sort_column_id(GTKBOOKLIST_COLUMN_READDATE_TIMET); append_column(_("Rating"), columns.rating); get_column(3)->get_first_cell_renderer()->property_xalign() = 0; get_column(3)->set_resizable(FALSE); get_column(3)->set_sort_column_id(GTKBOOKLIST_COLUMN_RATING_INT); signal_row_activated().connect( sigc::mem_fun(*this, &GtkBookList::on_selection_activated)); get_selection()->signal_changed().connect( sigc::mem_fun(*this, &GtkBookList::on_selection_changed)); store->signal_sort_column_changed().connect(signal_sorting_changed); } GtkBookList::~GtkBookList() { } void GtkBookList::insert_book(Book* book) { Gtk::TreeIter iter = store->append(); Gtk::TreeRow row = *iter; row_fill(row, book); booklist[book] = iter; numitems++; signal_changed.emit(); } void GtkBookList::remove_book(Book* book) { #ifdef _DEBUG_ printf("GtkBookList::remove_book(): %s\n", book->get_title().c_str()); #endif g_assert(booklist.find(book) != booklist.end()); Gtk::TreeIter iter = booklist.find(book)->second; store->erase(iter); booklist.erase(book); numitems--; signal_changed.emit(); } void GtkBookList::remove_selected(void) { #ifdef _DEBUG_ printf("GtkBookList::remove_selected(): Called.\n"); #endif Gtk::TreeIter iter = get_selection()->get_selected(); if (!iter) return; Book* book = iter->get_value(columns.book); store->erase(iter); booklist.erase(book); numitems--; signal_changed.emit(); } void GtkBookList::update_soft(void) { std::map::iterator iter = booklist.begin(); while (iter != booklist.end()) { Book* book = iter->first; Gtk::TreeRow row = *iter->second; row_fill(row, book); iter++; } } Book* GtkBookList::get_first_selected(void) { if (!get_selection()->get_selected()) return NULL; return get_selection()->get_selected()->get_value(columns.book); } int GtkBookList::get_numitems(void) { return numitems; } void GtkBookList::set_sorting(int col) { int curcol; Gtk::SortType order; store->get_sort_column_id(curcol, order); if (curcol == col) return; store->set_sort_column_id(col, Gtk::SORT_ASCENDING); } int GtkBookList::get_sorting(void) { int col; Gtk::SortType order; store->get_sort_column_id(col, order); return col; } void GtkBookList::row_fill(Gtk::TreeModel::Row &row, Book* book) { struct tm time = book->get_readdate(); row[columns.icon] = pixbuf_book; row[columns.author_and_title] = "" + book->get_author() + "\n" + book->get_title(); row[columns.title] = book->get_title(); row[columns.category] = book->get_category(); row[columns.readdate] = book->get_readdate_string(); row[columns.readdate_time_t] = mktime(&time); row[columns.rating] = pixbuf_rating[book->get_rating() + 1]; row[columns.rating_integer] = book->get_rating(); row[columns.book] = book; } void GtkBookList::on_selection_activated(Gtk::TreePath path, Gtk::TreeViewColumn* column) { Book* book = store->get_iter(path)->get_value(columns.book); signal_book_activated.emit(book); } void GtkBookList::on_selection_changed(void) { Gtk::TreeIter iter = get_selection()->get_selected(); if (!iter) return; Book* book = iter->get_value(columns.book); signal_book_selected.emit(book); } bibshelf-1.6.0/src/main.cc0000644000175000017500000000224211105623241012232 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include "Controller.h" using namespace std; int main(int argc, char *argv[]) { #ifdef ENABLE_NLS bindtextdomain(PACKAGE, PACKAGE_LOCALE_DIR); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE); #endif Gtk::Main gtk(argc, argv); Controller controller; Gtk::Main::run(controller.mainwindow); return 0; } bibshelf-1.6.0/src/Controller.h0000644000175000017500000000527711105623241013306 00000000000000/* * 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 Library 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. */ #ifndef _CONTROLLER_H #define _CONTROLLER_H #include #include #include #include #include "DialogMain.h" #include "DialogBook.h" #include "DialogBookEditor.h" #include "DialogBookDelete.h" #include "DialogError.h" #include "Book.h" #include "DiskStorage.h" #include "NetStorage.h" #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) #define DEFAULT_BOOK_DIRECTORY string(getenv("HOME")) + "/.bibshelf/" class Controller { public: Controller(); ~Controller(); DialogMain mainwindow; protected: // Mainwindow callbacks. void on_dialog_main_button_add_clicked(void); void on_dialog_main_button_delete_clicked(void); void on_dialog_main_button_details_clicked(void); void on_dialog_main_gtkbooklist_signal_book_selected(Book* book); void on_dialog_main_gtkbooklist_signal_book_activated(Book* book); // Book dialog callbacks. void on_dialog_book_signal_button_edit_clicked( DialogBook* editor, Book* book); void on_dialog_book_signal_button_close_clicked( DialogBook* editor, Book* book); // Book editor callbacks. void on_dialog_bookeditor_signal_button_cancel_clicked( DialogBookEditor* editor, Book* book); void on_dialog_bookeditor_signal_button_save_clicked( DialogBookEditor* editor, Book* book); // Popup window callbacks. void on_dialog_book_delete_button_delete_clicked(Gtk::Dialog* dialog, Book* book); void on_dialog_any_cancel_clicked(Gtk::Dialog* dialog); // Other callbacks. void on_diskstorage_signal_book_loaded(Book* book); DiskStorage diskstorage; NetStorage netstorage; std::map bookdialoglist; std::map bookeditorlist; }; #endif /* _CONTROLLER_H */ bibshelf-1.6.0/src/DialogBook.h0000644000175000017500000000574211105623241013172 00000000000000/* * 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 Library 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. */ #ifndef _DIALOGBOOK_H #define _DIALOGBOOK_H #include #include #include #include "Book.h" #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) using namespace std; class DialogBook : public Gtk::Window { public: DialogBook(Book* book); virtual ~DialogBook(); /* Emitted when the "Edit" button has been clicked. */ SigC::Signal2 signal_button_edit_clicked; /* Emitted when the "Close" button has been clicked. */ SigC::Signal2 signal_button_close_clicked; /* Returns a pointer to the book associated with this window. */ Book* get_book(void); protected: /* Called, whenever the "Edit" button has been clicked. */ void on_button_edit_clicked(void); /* Called, whenever the "Close" button has been clicked. */ void on_button_close_clicked(void); /* Called, when the window was closed using the window manager. */ bool on_window_delete_event(GdkEventAny* trash); Book* book; Gtk::Table table; // Labels Gtk::Label label_author; Gtk::Label label_author_str; Gtk::Label label_title; Gtk::Label label_title_str; Gtk::Label label_isbn; Gtk::Label label_isbn_str; Gtk::Label label_category; Gtk::Label label_category_str; Gtk::Label label_rating; Gtk::Image image_rating; Gtk::Label label_readdate; Gtk::Label label_readdate_str; // Summary and Review Gtk::Label label_summary; Gtk::Label label_summary_str; Gtk::ScrolledWindow scroll_summary; Gtk::Label label_review; Gtk::Label label_review_str; Gtk::ScrolledWindow scroll_review; // Buttons Gtk::HBox buttonbox; Gtk::Fixed fixed; Gtk::HBox hbox_button_edit; Gtk::Label label_button_edit; Gtk::Image image_button_edit; Gtk::Button button_edit; Gtk::Button button_close; }; #endif /* _DIALOGBOOK_H */ bibshelf-1.6.0/src/DialogMain.h0000644000175000017500000000725011105623241013160 00000000000000/* * 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 Library 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. */ #ifndef _DIALOGMAIN_H #define _DIALOGMAIN_H #include #include #include #include "Book.h" #include "GtkBookList.h" #include "DialogAbout.h" #define _(String) gettext (String) #define gettext_noop(String) (String) #define N_(String) gettext_noop (String) #define DIALOG_MAIN_SUMMARY_LENGTH 150 class DialogMain : public Gtk::Window { public: DialogMain(); ~DialogMain(); /* Triggered whenever the 'Add' button has been clicked. */ SigC::Signal0 signal_button_add_clicked; /* Triggered whenever the 'Delete' button has been clicked. */ SigC::Signal0 signal_button_delete_clicked; /* Triggered whenever the 'Show Details' button has been clicked. */ SigC::Signal0 signal_button_details_clicked; /* Update the preview informations according to the given book. */ void update_preview(Book* book); GtkBookList booklist; protected: /* Called, whenever the File/Quit item has been activated. */ void on_file_quit_clicked(void); /* Called, whenever a View/Sort by... item has been activated. */ void on_view_sortorder_clicked(int column); /* Called, whenever the Help/About item has been activated. */ void on_help_about_clicked(void); /* Called, whenever the booklist selection was changed. */ void on_booklist_selection_changed(Book* book); /* Called, whenever the booklist sort order was changed. */ void on_booklist_sorting_changed(void); /* Called, whenever the booklist content was changed. */ void on_booklist_changed(void); DialogAbout aboutbox; bool lock_events; Gtk::VBox vbox_main; // The menu. Gtk::MenuBar menubar; Gtk::Menu menu_file; Gtk::Menu menu_view; Gtk::RadioButtonGroup menu_view_group_sort; Gtk::Menu_Helpers::RadioMenuElem menu_view_elem_sort_author; Gtk::Menu_Helpers::RadioMenuElem menu_view_elem_sort_title; Gtk::Menu_Helpers::RadioMenuElem menu_view_elem_sort_category; Gtk::Menu_Helpers::RadioMenuElem menu_view_elem_sort_readdate; Gtk::Menu_Helpers::RadioMenuElem menu_view_elem_sort_rating; Gtk::Menu menu_help; // The button area. Gtk::HBox hbox_buttons; Gtk::Fixed fixed_buttons; Gtk::Button button_add; Gtk::HBox hbox_button_add; Gtk::Image image_button_add; Gtk::Label label_button_add; Gtk::Button button_delete; Gtk::HBox hbox_button_delete; Gtk::Image image_button_delete; Gtk::Label label_button_delete; Gtk::Button button_details; Gtk::HBox hbox_button_details; Gtk::Image image_button_details; Gtk::Label label_button_details; // The preview area. Gtk::Table table_preview; Gtk::Label label_expander; Gtk::Label label_title; Gtk::Label label_author; Gtk::Fixed fixed_preview; Gtk::Label label_summary; Gtk::Label label_isbn; // The book list. Gtk::Label label_booklist; Gtk::ScrolledWindow scroll_booklist; }; #endif /* _DIALOGMAIN_H */ bibshelf-1.6.0/src/Book.cc0000644000175000017500000000610211123467625012213 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "Book.h" #include Book::Book() : originator(this), author(_("Unknown")), title(_("New Book")), category(_("Undefined")), rating(-1) { memset(&readdate, 0, sizeof(tm)); } Book::~Book() { } bool Book::operator ==(Book book) { return originator == book.originator; } void Book::set_author(string pauthor) { author = pauthor; } string Book::get_author(void) { return author; } void Book::set_title(string ptitle) { title = ptitle; } string Book::get_title(void) { return title; } void Book::set_isbn(string pisbn) { isbn = pisbn; } string Book::get_isbn(void) { return isbn; } void Book::set_category(string pcategory) { category = pcategory; } string Book::get_category(void) { return category; } void Book::set_summary(string psummary) { summary = psummary; } string Book::get_summary(void) { return summary; } static string replace(string s, char from, char to) { int i; for (i = 0; s[i]; i++) if (s[i] == from) s[i] = to; return s; } string Book::get_summary(unsigned int len) { if (summary.length() <= len) return replace(summary, '\n', ' '); string summary_cut = summary.substr(0, len) + "..."; return replace(summary_cut, '\n', ' '); } void Book::set_review(string preview) { review = preview; } string Book::get_review(void) { return review; } void Book::set_rating(int prating) { if (rating < -1 || rating > 10) rating = -1; else rating = prating; } int Book::get_rating(void) { return rating; } void Book::set_readdate(unsigned int year, unsigned int month, unsigned int day) { readdate.tm_year = year - 1900; readdate.tm_mon = month; readdate.tm_mday = day; } void Book::set_readdate_string(string date) { if (!strptime(date.c_str(), "%x", &readdate)) memset(&readdate, 0, sizeof(tm)); } tm Book::get_readdate(void) { return readdate; } string Book::get_readdate_string(void) { struct tm undefined; memset(&undefined, 0, sizeof(tm)); if (memcmp(&readdate, &undefined, sizeof(tm)) == 0) return _("Not yet read"); char str[256]; strftime(str, 255, "%x", &readdate); return str; } void Book::set_filename(string pfilename) { filename = pfilename; } string Book::get_filename(void) { return filename; } Book* Book::get_originator(void) { return originator; } bibshelf-1.6.0/src/DiskStorage.h0000644000175000017500000000470211105623241013372 00000000000000/* * 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 Library 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. */ #ifndef _DISKSTORAGE_H #define _DISKSTORAGE_H #include #include #include #include #include #include #include "Book.h" #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE 1 #endif using namespace std; enum STORAGE_ERRORS { STORAGE_ERROR_MAKEDIR_FAILED, STORAGE_ERROR_DIR_OPEN_FAILED, STORAGE_ERROR_FILE_DELETE_FAILED, STORAGE_ERROR_PERMISSION_DENIED, STORAGE_ERROR_NO_SUCH_FILE, STORAGE_ERROR_XML_EXCEPTION, STORAGE_ERROR_XML, STORAGE_ERROR_EXCEPTION }; class DiskStorage : public sigc::trackable { public: DiskStorage(); ~DiskStorage(); // Emitted whenever load_all() loaded a book. SigC::Signal1 signal_book_loaded; /* Initialize the DiskStorage using the given directory. * If the directory does not yet exist, it will be created. * Returns an error code, or 0 on success. */ int init(string directory); /* Loads all files from the directory structure into newly created Book * objects and emits them in a signal_book_loaded(). * Returns an error code, or 0 on success. */ int load_all(void); /* Saves a book to the disk. Returns an error code, or 0 on success. */ int save_book(Book* book); /* Deletes a book from the disk. Returns an error code, or 0 on success. */ int delete_book(Book* book); protected: /* Does the work for load_all. */ int load_all_recursive(string directory); /* Load data from a file into the given Book object. */ int load_book(string filename, Book* book); /* Copy data from an xml-structure into the given Book object. */ int xml2book(const xmlpp::Node* rootnode, Book* book); string directory; }; #endif /* _STORAGE_H */ bibshelf-1.6.0/src/DialogBookEditor.cc0000644000175000017500000002165311123467643014512 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DialogBookEditor.h" #include //#define _DEBUG_ DialogBookEditor::DialogBookEditor(Book* pbook) : book(pbook), calendar(*this), table(7, 2), label_author(_("Author:"), 0, 0.5), label_title(_("Title:"), 0, 0.5), label_isbn(_("ISBN:"), 0, 0.5), label_category(_("Category:"), 0, 0.5), label_rating(_("Rating:"), 0, 0.5), label_readdate(_("Read:"), 0, 0.5), image_readdate(PACKAGE_PIXMAPS_DIR "/calendar.png"), label_summary(_("Summary:"), 0, 0.5), label_review(_("Review:"), 0, 0.5), button_cancel(Gtk::Stock::CANCEL), button_save(Gtk::Stock::SAVE) { set_size_request(450, -1); table.set_row_spacings(3); table.set_col_spacings(12); table.set_border_width(12); add(table); // Author. table.attach(label_author, 0, 1, 0, 1, Gtk::FILL, Gtk::FILL); table.attach(entry_author, 1, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); entry_author.set_text(book->get_author()); // Title. table.attach(label_title, 0, 1, 1, 2, Gtk::FILL, Gtk::FILL); table.attach(entry_title, 1, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); entry_title.signal_changed().connect( sigc::mem_fun(*this, &DialogBookEditor::on_entry_title_changed)); entry_title.set_text(book->get_title()); // ISBN-Number. table.attach(label_isbn, 0, 1, 2, 3, Gtk::FILL, Gtk::FILL); table.attach(entry_isbn, 1, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); entry_isbn.set_text(book->get_isbn()); // Category. table.attach(label_category, 0, 1, 3, 4, Gtk::FILL, Gtk::FILL); combo_category.append_text(_("Biography")); combo_category.append_text(_("Children")); combo_category.append_text(_("Classic")); combo_category.append_text(_("Drama")); combo_category.append_text(_("Fiction")); combo_category.append_text(_("Health")); combo_category.append_text(_("History")); combo_category.append_text(_("Horror")); combo_category.append_text(_("Humor")); combo_category.append_text(_("Other")); combo_category.append_text(_("Poetry")); combo_category.append_text(_("Reference")); combo_category.append_text(_("Religion")); combo_category.append_text(_("Romance")); combo_category.append_text(_("Science")); combo_category.append_text(_("Science Fiction")); combo_category.append_text(_("Thriller")); table.attach(combo_category, 1, 2, 3, 4, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); Gtk::Entry *entry_category = (Gtk::Entry*)combo_category.get_child(); entry_category->set_text(book->get_category()); // Rating. table.attach(label_rating, 0, 1, 4, 5, Gtk::FILL, Gtk::FILL); combo_rating.append_text(_("Not yet rated")); int i; for (i = 0; i <= 10; i++) { char number[3]; snprintf(number, 3, "%i", i); combo_rating.append_text(number); } combo_rating.set_active(book->get_rating() + 1); table.attach(combo_rating, 1, 2, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); // Read date selector. table.attach(label_readdate, 0, 1, 5, 6, Gtk::FILL, Gtk::FILL); button_readdate.add(image_readdate); hbox_readdate.set_spacing(3); hbox_readdate.pack_start(entry_readdate, TRUE, TRUE); hbox_readdate.pack_start(button_readdate, FALSE, FALSE); table.attach(hbox_readdate, 1, 2, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::FILL); entry_readdate.set_text(book->get_readdate_string()); button_readdate.signal_clicked().connect( sigc::mem_fun(*this, &DialogBookEditor::on_button_readdate_clicked)); table.set_row_spacing(5, 12); // Summary table.attach(label_summary, 0, 2, 6, 7, Gtk::FILL, Gtk::FILL); scroll_summary.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scroll_summary.set_shadow_type(Gtk::SHADOW_IN); text_summary.set_wrap_mode(Gtk::WRAP_WORD); scroll_summary.add(text_summary); table.attach(scroll_summary, 0, 2, 7, 8); table.set_row_spacing(7, 12); text_summary.get_buffer()->set_text(book->get_summary()); // Review table.attach(label_review, 0, 2, 8, 9, Gtk::FILL, Gtk::FILL); scroll_review.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scroll_review.set_shadow_type(Gtk::SHADOW_IN); text_review.set_wrap_mode(Gtk::WRAP_WORD); scroll_review.add(text_review); table.attach(scroll_review, 0, 2, 9, 10); table.set_row_spacing(9, 12); text_review.get_buffer()->set_text(book->get_review()); // Buttons { buttonbox.set_spacing(12); table.attach(buttonbox, 0, 2, 10, 11, Gtk::FILL, Gtk::FILL); // Add some distance. buttonbox.pack_start(fixed, TRUE, TRUE); // "Cancel". button_cancel.set_size_request(-1, 35); buttonbox.pack_start(button_cancel, FALSE, TRUE); button_cancel.signal_clicked().connect( sigc::mem_fun(*this, &DialogBookEditor::on_button_cancel_clicked)); // "Save". button_save.set_size_request(-1, 35); buttonbox.pack_start(button_save, FALSE, TRUE); button_save.signal_clicked().connect( sigc::mem_fun(*this, &DialogBookEditor::on_button_save_clicked)); } signal_expose_event().connect( sigc::mem_fun(*this, &DialogBookEditor::on_window_expose_event)); signal_delete_event().connect( sigc::mem_fun(*this, &DialogBookEditor::on_window_delete_event)); show_all(); } DialogBookEditor::~DialogBookEditor() { } Book* DialogBookEditor::get_book(void) { return book; } void DialogBookEditor::on_entry_title_changed(void) { string title = entry_title.get_text(); set_title(title != "" ? title : _("Unnamed Book")); } void DialogBookEditor::on_button_readdate_clicked(void) { if (calendar.is_visible()) { calendar.hide(); calendar_signal_selected.disconnect(); return; } struct tm date; date = book->get_readdate(); struct tm undefined; memset(&undefined, 0, sizeof(tm)); if (memcmp(&date, &undefined, sizeof(tm)) != 0) { calendar.calendar.select_month(date.tm_mon, date.tm_year + 1900); calendar.calendar.select_day(date.tm_mday); } calendar_signal_selected = calendar.calendar.signal_day_selected().connect( sigc::mem_fun(*this, &DialogBookEditor::on_calendar_readdate_selected)); calendar.calendar.signal_day_selected_double_click().connect( sigc::mem_fun(*this, &DialogBookEditor::on_calendar_readdate_doubleclicked)); calendar.show(); on_window_expose_event(NULL); } void DialogBookEditor::on_calendar_readdate_selected(void) { #ifdef _DEBUG_ printf("DialogBookEditor::on_calendar_readdate_selected(): Called.\n"); #endif unsigned int year, month, day; calendar.calendar.get_date(year, month, day); book->set_readdate(year, month, day); entry_readdate.set_text(book->get_readdate_string()); } void DialogBookEditor::on_calendar_readdate_doubleclicked(void) { #ifdef _DEBUG_ printf("DialogBookEditor::on_calendar_readdate_doubleclicked(): Called.\n"); #endif calendar.hide(); calendar_signal_selected.disconnect(); } void DialogBookEditor::on_button_cancel_clicked(void) { #ifdef _DEBUG_ printf("DialogBookEditor::on_button_cancel_clicked(): Called.\n"); #endif signal_button_cancel_clicked.emit(this, book); } void DialogBookEditor::on_button_save_clicked(void) { #ifdef _DEBUG_ printf("DialogBookEditor::on_button_save_clicked(): Called.\n"); #endif book->set_author(entry_author.get_text()); book->set_title(entry_title.get_text()); book->set_isbn(entry_isbn.get_text()); Gtk::Entry *entry_category = (Gtk::Entry*)combo_category.get_child(); book->set_category(entry_category->get_text()); book->set_summary(text_summary.get_buffer()->get_text()); book->set_review(text_review.get_buffer()->get_text()); book->set_rating(combo_rating.get_active_row_number() - 1); book->set_readdate_string(entry_readdate.get_text()); signal_button_save_clicked.emit(this, book); } bool DialogBookEditor::on_window_delete_event(GdkEventAny* trash) { on_button_cancel_clicked(); return FALSE; } bool DialogBookEditor::on_window_expose_event(GdkEventExpose* trash) { int win_x, win_y; int button_x, button_y, button_w, button_h; int cal_w; button_readdate.get_window()->get_position(win_x, win_y); button_x = button_readdate.get_allocation().get_x(); button_y = button_readdate.get_allocation().get_y(); button_w = button_readdate.get_width(); button_h = button_readdate.get_height(); cal_w = calendar.calendar.get_width(); calendar.move(win_x + button_x, win_y + button_y + button_h); return TRUE; } bibshelf-1.6.0/src/DialogCalendar.cc0000644000175000017500000000177111105623241014145 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DialogCalendar.h" DialogCalendar::DialogCalendar(Gtk::Window& parent) : Gtk::Window(Gtk::WINDOW_POPUP) { set_title(""); set_transient_for(parent); set_decorated(FALSE); add(calendar); calendar.show(); } bibshelf-1.6.0/src/DialogMain.cc0000644000175000017500000002223711105623241013320 00000000000000/* * 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 Library 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "DialogMain.h" //#define _DEBUG_ DialogMain::DialogMain() : lock_events(FALSE), menu_view_elem_sort_author( menu_view_group_sort, _("Sort by _Author"), sigc::bind(sigc::mem_fun(*this, &DialogMain::on_view_sortorder_clicked), GTKBOOKLIST_COLUMN_AUTHORANDTITLE)), menu_view_elem_sort_title( menu_view_group_sort, _("Sort by _Title"), sigc::bind(sigc::mem_fun(*this, &DialogMain::on_view_sortorder_clicked), GTKBOOKLIST_COLUMN_TITLE)), menu_view_elem_sort_category( menu_view_group_sort, _("Sort by _Category"), sigc::bind(sigc::mem_fun(*this, &DialogMain::on_view_sortorder_clicked), GTKBOOKLIST_COLUMN_CATEGORY)), menu_view_elem_sort_readdate( menu_view_group_sort, _("Sort by Read _Date"), sigc::bind(sigc::mem_fun(*this, &DialogMain::on_view_sortorder_clicked), GTKBOOKLIST_COLUMN_READDATE_TIMET)), menu_view_elem_sort_rating( menu_view_group_sort, _("Sort by _Rating"), sigc::bind(sigc::mem_fun(*this, &DialogMain::on_view_sortorder_clicked), GTKBOOKLIST_COLUMN_RATING_INT)), image_button_add(Gtk::Stock::ADD, Gtk::IconSize(Gtk::ICON_SIZE_SMALL_TOOLBAR)), label_button_add(_("Add Book")), image_button_delete(Gtk::Stock::DELETE, Gtk::IconSize(Gtk::ICON_SIZE_SMALL_TOOLBAR)), label_button_delete(_("Delete Book")), image_button_details(Gtk::Stock::JUSTIFY_LEFT, Gtk::IconSize(Gtk::ICON_SIZE_SMALL_TOOLBAR)), label_button_details(_("Show Details")), table_preview(6, 2), label_title(" ", 0, 0.5), label_author(" ", 0, 0.5), label_summary(" ", 0, 0), label_isbn(" ", 0, 0.5), label_booklist(" ", 0, 0.5) { // The menubar. { // The "File" menu. menubar.items().push_back( Gtk::Menu_Helpers::MenuElem(_("_File"), menu_file)); menu_file.items().push_back( Gtk::Menu_Helpers::StockMenuElem( Gtk::Stock::QUIT, sigc::mem_fun(*this, &DialogMain::on_file_quit_clicked))); // The "View" menu. { menubar.items().push_back( Gtk::Menu_Helpers::MenuElem(_("_View"), menu_view)); menu_view.items().push_back(menu_view_elem_sort_author); menu_view.items().push_back(menu_view_elem_sort_title); menu_view.items().push_back(menu_view_elem_sort_category); menu_view.items().push_back(menu_view_elem_sort_readdate); menu_view.items().push_back(menu_view_elem_sort_rating); } // The "Help" menu. menubar.items().push_back( Gtk::Menu_Helpers::MenuElem(_("_Help"), menu_help)); menu_help.items().push_back( Gtk::Menu_Helpers::StockMenuElem(Gtk::Stock::ABOUT, sigc::mem_fun(*this, &DialogMain::on_help_about_clicked))); } // The buttons. { hbox_buttons.set_border_width(6); hbox_buttons.set_spacing(12); // Add book. hbox_button_add.set_spacing(3); hbox_button_add.pack_start(image_button_add); hbox_button_add.pack_start(label_button_add); button_add.add(hbox_button_add); hbox_buttons.pack_start(button_add, FALSE, FALSE); // Delete book. hbox_button_delete.set_spacing(3); hbox_button_delete.pack_start(image_button_delete); hbox_button_delete.pack_start(label_button_delete); button_delete.add(hbox_button_delete); hbox_buttons.pack_start(button_delete, FALSE, FALSE); // Show book. hbox_button_details.set_spacing(3); hbox_button_details.pack_start(image_button_details); hbox_button_details.pack_start(label_button_details); button_details.add(hbox_button_details); hbox_buttons.pack_start(button_details, FALSE, FALSE); hbox_buttons.pack_start(fixed_buttons, TRUE, TRUE); button_add.signal_clicked().connect(signal_button_add_clicked); button_delete.signal_clicked().connect(signal_button_delete_clicked); button_details.signal_clicked().connect(signal_button_details_clicked); } // The book preview. { table_preview.set_border_width(6); label_title.set_line_wrap(); label_author.set_line_wrap(); label_summary.set_line_wrap(); label_expander.set_line_wrap(); label_isbn.set_line_wrap(); label_isbn.set_padding(0, 3); label_isbn.set_selectable(TRUE); fixed_preview.set_size_request(-1, 9); table_preview.attach(label_title, 0, 1, 0, 1); table_preview.attach(label_author, 0, 1, 1, 2); table_preview.attach(fixed_preview, 0, 1, 2, 3); table_preview.attach(label_summary, 0, 1, 3, 4, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND); table_preview.attach(label_expander, 1, 2, 3, 4); table_preview.attach(label_isbn, 0, 1, 5, 6); // Paste some newline characters into the label_expander, so that the // area expands properly. string foo; foo.insert(0, DIALOG_MAIN_SUMMARY_LENGTH / 75, '\n'); label_expander.set_text(foo); } // The book list. { label_booklist.set_padding(6, 0); scroll_booklist.set_border_width(6); scroll_booklist.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); scroll_booklist.set_shadow_type(Gtk::SHADOW_IN); scroll_booklist.add(booklist); booklist.signal_book_selected.connect( sigc::mem_fun(*this, &DialogMain::on_booklist_selection_changed)); booklist.signal_changed.connect( sigc::mem_fun(*this, &DialogMain::on_booklist_changed)); booklist.signal_sorting_changed.connect( sigc::mem_fun(*this, &DialogMain::on_booklist_sorting_changed)); on_booklist_changed(); } // Pack it all together. vbox_main.pack_start(menubar, FALSE, FALSE); vbox_main.pack_start(hbox_buttons, FALSE, FALSE); vbox_main.pack_start(table_preview, FALSE, FALSE); vbox_main.pack_start(label_booklist, FALSE, FALSE); vbox_main.pack_start(scroll_booklist, TRUE, TRUE); add(vbox_main); set_size_request(500, 550); set_title(_("Book Organizer")); show_all(); } DialogMain::~DialogMain() { } void DialogMain::update_preview(Book *book) { label_title.set_markup("" + book->get_title() + ""); label_author.set_text(book->get_author()); label_summary.set_text(book->get_summary(DIALOG_MAIN_SUMMARY_LENGTH)); label_isbn.set_markup(book->get_isbn() == "" ? _("Unknown ISBN") : "ISBN " + book->get_isbn() + ""); } void DialogMain::on_file_quit_clicked(void) { this->hide(); } void DialogMain::on_view_sortorder_clicked(int column) { if (lock_events) return; #ifdef _DEBUG_ printf("DialogMain::on_view_sortorder_clicked(): %i\n", column); #endif lock_events = TRUE; booklist.set_sorting(column); lock_events = FALSE; } void DialogMain::on_booklist_sorting_changed(void) { if (lock_events) return; #ifdef _DEBUG_ printf("DialogMain::on_booklist_sorting_changed(): Called.\n"); #endif Glib::RefPtr item; switch (booklist.get_sorting()) { case GTKBOOKLIST_COLUMN_AUTHORANDTITLE: item = menu_view_elem_sort_author.get_child(); break; case GTKBOOKLIST_COLUMN_TITLE: item = menu_view_elem_sort_title.get_child(); break; case GTKBOOKLIST_COLUMN_CATEGORY: item = menu_view_elem_sort_category.get_child(); break; case GTKBOOKLIST_COLUMN_READDATE_TIMET: item = menu_view_elem_sort_readdate.get_child(); break; case GTKBOOKLIST_COLUMN_RATING_INT: item = menu_view_elem_sort_rating.get_child(); break; default: g_warning("DialogMain::on_booklist_sorting_changed(): Unknown sorting.\n"); break; } lock_events = TRUE; item->activate(); lock_events = FALSE; } void DialogMain::on_help_about_clicked(void) { aboutbox.run(); aboutbox.hide(); } void DialogMain::on_booklist_selection_changed(Book* book) { char title[200]; if (book) snprintf(title, 200, _("%s - Book Organizer"), book->get_title().c_str()); else snprintf(title, 200, _("Book Organizer")); set_title(title); } void DialogMain::on_booklist_changed(void) { char str[1000]; char count[1000]; snprintf(str, 1000, "%s", _("Booklist ")); snprintf(count, 1000, _("(%i books in the list):"), booklist.get_numitems()); string text = str; text.append(count); label_booklist.set_markup(text); } bibshelf-1.6.0/ChangeLog0000644000175000017500000000063011132460146011764 000000000000002009-01-09 Samuel Abels * Release 1.6.0. 2007-12-28 Johannes Schmid,,, reviewed by: * project.anjuta: 2007-12-23 Johannes Schmid,,, reviewed by: * src/Makefile.am.tpl: 2007-12-23 Johannes Schmid,,, reviewed by: * src/Makefile.am.tpl: bibshelf-1.6.0/configure0000755000175000017500000101403211132460413012120 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for bibshelf 1.6.0. # # Report bugs to . # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # PATH needs CR # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) as_nl=' ' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH if test "x$CONFIG_SHELL" = x; then if (eval ":") 2>/dev/null; then as_have_required=yes else as_have_required=no fi if test $as_have_required = yes && (eval ": (as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=\$LINENO as_lineno_2=\$LINENO test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ") 2> /dev/null; then : else as_candidate_shells= as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. case $as_dir in /*) for as_base in sh bash ksh sh5; do as_candidate_shells="$as_candidate_shells $as_dir/$as_base" done;; esac done IFS=$as_save_IFS for as_shell in $as_candidate_shells $SHELL; do # Try only shells that exist, to save several forks. if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { ("$as_shell") 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi : _ASEOF }; then CONFIG_SHELL=$as_shell as_have_required=yes if { "$as_shell" 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi : (as_func_return () { (exit $1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = "$1" ); then : else exitcode=1 echo positional parameters were not saved. fi test $exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } _ASEOF }; then break fi fi done if test "x$CONFIG_SHELL" != x; then for as_var in BASH_ENV ENV do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done export CONFIG_SHELL exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test $as_have_required = no; then echo This script requires a shell more modern than all the echo shells that I found on your system. Please install a echo modern shell, or manually run the script under such a echo shell if you do have one. { (exit 1); exit 1; } fi fi fi (eval "as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0") || { echo No shell found that supports shell functions. echo Please tell autoconf@gnu.org about your system, echo including any error possibly output before this echo message } as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. Blame Lee # E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir fi echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='bibshelf' PACKAGE_TARNAME='bibshelf' PACKAGE_VERSION='1.6.0' PACKAGE_STRING='bibshelf 1.6.0' PACKAGE_BUGREPORT='http://debain.org/software/bibshelf' # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir localstatedir includedir oldincludedir docdir infodir htmldir dvidir pdfdir psdir libdir localedir mandir DEFS ECHO_C ECHO_N ECHO_T LIBS build_alias host_alias target_alias PACKAGE_PIXMAPS_DIR INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA am__isrc CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CPP GREP EGREP GETTEXT_PACKAGE USE_NLS MSGFMT MSGFMT_OPTS GMSGFMT XGETTEXT CATALOGS CATOBJEXT DATADIRNAME GMOFILES INSTOBJEXT INTLLIBS PO_IN_DATADIR_TRUE PO_IN_DATADIR_FALSE POFILES POSUB MKINSTALLDIRS INTLTOOL_UPDATE INTLTOOL_MERGE INTLTOOL_EXTRACT INTLTOOL_DESKTOP_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_KEYS_RULE INTLTOOL_PROP_RULE INTLTOOL_OAF_RULE INTLTOOL_PONG_RULE INTLTOOL_SERVER_RULE INTLTOOL_SHEET_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_UI_RULE INTLTOOL_XAM_RULE INTLTOOL_KBD_RULE INTLTOOL_XML_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_CAVES_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_THEME_RULE INTLTOOL_SERVICE_RULE INTLTOOL_POLICY_RULE MSGMERGE INTLTOOL_PERL ALL_LINGUAS PKG_CONFIG BIBSHELF_CFLAGS BIBSHELF_LIBS LIBOBJS LTLIBOBJS' ac_subst_files='' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CXX CXXFLAGS CCC CPP PKG_CONFIG BIBSHELF_CFLAGS BIBSHELF_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=\$ac_optarg ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute directory names. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; } done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || { echo "$as_me: error: Working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { echo "$as_me: error: pwd does not report name of working directory" >&2 { (exit 1); exit 1; }; } # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$0" || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X"$0" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 { (exit 1); exit 1; }; } pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures bibshelf 1.6.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/bibshelf] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of bibshelf 1.6.0:";; esac cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --disable-nls do not use Native Language Support Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if you have headers in a nonstandard directory CXX C++ compiler command CXXFLAGS C++ compiler flags CPP C preprocessor PKG_CONFIG path to pkg-config utility BIBSHELF_CFLAGS C compiler flags for BIBSHELF, overriding pkg-config BIBSHELF_LIBS linker flags for BIBSHELF, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF bibshelf configure 1.6.0 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by bibshelf $as_me 1.6.0, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2) ac_configure_args1="$ac_configure_args1 '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac done done $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo cat <<\_ASBOX ## ---------------- ## ## Cache variables. ## ## ---------------- ## _ASBOX echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_unset $ac_var ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ## ------------------- ## ## File substitutions. ## ## ------------------- ## _ASBOX echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX echo cat confdefs.h echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then set x "$CONFIG_SITE" elif test "x$prefix" != xNONE; then set x "$prefix/share/config.site" "$prefix/etc/config.site" else set x "$ac_default_prefix/share/config.site" \ "$ac_default_prefix/etc/config.site" fi shift for ac_site_file do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu PACKAGE_PIXMAPS_DIR=$(datadir)/pixmaps am__api_version='1.10' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} { (exit 1); exit 1; }; } fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in ./ | .// | /cC/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done IFS=$as_save_IFS fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm -f conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. test -d ./--version && rmdir ./--version MKDIR_P="$ac_install_sh -d" fi fi { echo "$as_me:$LINENO: result: $MKDIR_P" >&5 echo "${ECHO_T}$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$AWK" && break done { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } SET_MAKE= else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=bibshelf VERSION=1.6.0 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers config.h" { echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no fi { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi { echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # # List of possible output files, starting from the most likely. # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) # only as a last resort. b.out is created by i960 compilers. ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' # # The IRIX 6 linker writes into existing files which may not be # executable, retaining their permissions. Remove them first so a # subsequent execution test works. ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { (ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link_default") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi { echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6; } if test -z "$ac_file"; then echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6; } { echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT { echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6; } ;; xno) { echo "$as_me:$LINENO: result: unsupported" >&5 echo "${ECHO_T}unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; esac ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { echo "$as_me:$LINENO: checking for library containing strerror" >&5 echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6; } if test "${ac_cv_search_strerror+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_func_search_save_LIBS=$LIBS cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strerror (); int main () { return strerror (); ; return 0; } _ACEOF for ac_lib in '' cposix; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_search_strerror=$ac_res else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext if test "${ac_cv_search_strerror+set}" = set; then break fi done if test "${ac_cv_search_strerror+set}" = set; then : else ac_cv_search_strerror=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 echo "${ECHO_T}$ac_cv_search_strerror" >&6; } ac_res=$ac_cv_search_strerror if test "$ac_res" != no; then test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CXXFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6; } ;; xno) { echo "$as_me:$LINENO: result: unsupported" >&5 echo "${ECHO_T}unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; esac ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } if test "${ac_cv_path_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Extract the first word of "grep ggrep" to use in msg output if test -z "$GREP"; then set dummy grep ggrep; ac_prog_name=$2 if test "${ac_cv_path_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break ac_count=`expr $ac_count + 1` if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS fi GREP="$ac_cv_path_GREP" if test -z "$GREP"; then { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_GREP=$GREP fi fi { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 echo "${ECHO_T}$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { echo "$as_me:$LINENO: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else # Extract the first word of "egrep" to use in msg output if test -z "$EGREP"; then set dummy egrep; ac_prog_name=$2 if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break ac_count=`expr $ac_count + 1` if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS fi EGREP="$ac_cv_path_EGREP" if test -z "$EGREP"; then { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_EGREP=$EGREP fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi GETTEXT_PACKAGE=bibshelf cat >>confdefs.h <<_ACEOF #define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" _ACEOF # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_Header=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in locale.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------------------------- ## ## Report this to http://debain.org/software/bibshelf ## ## -------------------------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done if test $ac_cv_header_locale_h = yes; then { echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6; } if test "${am_cv_val_LC_MESSAGES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { return LC_MESSAGES ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then am_cv_val_LC_MESSAGES=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 am_cv_val_LC_MESSAGES=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6; } if test $am_cv_val_LC_MESSAGES = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_LC_MESSAGES 1 _ACEOF fi fi USE_NLS=yes gt_cv_have_gettext=no CATOBJEXT=NONE XGETTEXT=: INTLLIBS= if test "${ac_cv_header_libintl_h+set}" = set; then { echo "$as_me:$LINENO: checking for libintl.h" >&5 echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6; } if test "${ac_cv_header_libintl_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi { echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 echo "${ECHO_T}$ac_cv_header_libintl_h" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking libintl.h usability" >&5 echo $ECHO_N "checking libintl.h usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking libintl.h presence" >&5 echo $ECHO_N "checking libintl.h presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------------------------- ## ## Report this to http://debain.org/software/bibshelf ## ## -------------------------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for libintl.h" >&5 echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6; } if test "${ac_cv_header_libintl_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_libintl_h=$ac_header_preproc fi { echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 echo "${ECHO_T}$ac_cv_header_libintl_h" >&6; } fi if test $ac_cv_header_libintl_h = yes; then gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # { echo "$as_me:$LINENO: checking for ngettext in libc" >&5 echo $ECHO_N "checking for ngettext in libc... $ECHO_C" >&6; } if test "${gt_cv_func_ngettext_libc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { return !ngettext ("","", 1) ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then gt_cv_func_ngettext_libc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_func_ngettext_libc=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 echo "${ECHO_T}$gt_cv_func_ngettext_libc" >&6; } if test "$gt_cv_func_ngettext_libc" = "yes" ; then { echo "$as_me:$LINENO: checking for dgettext in libc" >&5 echo $ECHO_N "checking for dgettext in libc... $ECHO_C" >&6; } if test "${gt_cv_func_dgettext_libc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { return !dgettext ("","") ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then gt_cv_func_dgettext_libc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_func_dgettext_libc=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 echo "${ECHO_T}$gt_cv_func_dgettext_libc" >&6; } fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then for ac_func in bind_textdomain_codeset do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$ac_func || defined __stub___$ac_func choke me #endif int main () { return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_var'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done fi # # If we don't have everything we want, check in libintl # if test "$gt_cv_func_dgettext_libc" != "yes" \ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then { echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5 echo $ECHO_N "checking for bindtextdomain in -lintl... $ECHO_C" >&6; } if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char bindtextdomain (); int main () { return bindtextdomain (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_intl_bindtextdomain=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_bindtextdomain=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5 echo "${ECHO_T}$ac_cv_lib_intl_bindtextdomain" >&6; } if test $ac_cv_lib_intl_bindtextdomain = yes; then { echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6; } if test "${ac_cv_lib_intl_ngettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_intl_ngettext=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_ngettext=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6; } if test $ac_cv_lib_intl_ngettext = yes; then { echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5 echo $ECHO_N "checking for dgettext in -lintl... $ECHO_C" >&6; } if test "${ac_cv_lib_intl_dgettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dgettext (); int main () { return dgettext (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_intl_dgettext=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_dgettext=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5 echo "${ECHO_T}$ac_cv_lib_intl_dgettext" >&6; } if test $ac_cv_lib_intl_dgettext = yes; then gt_cv_func_dgettext_libintl=yes fi fi fi if test "$gt_cv_func_dgettext_libintl" != "yes" ; then { echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 echo $ECHO_N "checking if -liconv is needed to use gettext... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: " >&5 echo "${ECHO_T}" >&6; } { echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6; } if test "${ac_cv_lib_intl_ngettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_intl_ngettext=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_ngettext=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6; } if test $ac_cv_lib_intl_ngettext = yes; then { echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5 echo $ECHO_N "checking for dcgettext in -lintl... $ECHO_C" >&6; } if test "${ac_cv_lib_intl_dcgettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dcgettext (); int main () { return dcgettext (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_intl_dcgettext=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_intl_dcgettext=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5 echo "${ECHO_T}$ac_cv_lib_intl_dcgettext" >&6; } if test $ac_cv_lib_intl_dcgettext = yes; then gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv else : fi else : fi fi # # If we found libintl, then check in it for bind_textdomain_codeset(); # we'll prefer libc if neither have bind_textdomain_codeset(), # and both have dgettext and ngettext # if test "$gt_cv_func_dgettext_libintl" = "yes" ; then glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset for ac_func in bind_textdomain_codeset do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$ac_func || defined __stub___$ac_func choke me #endif int main () { return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_var'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done LIBS="$glib_save_LIBS" if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then gt_cv_func_dgettext_libc=no else if test "$gt_cv_func_dgettext_libc" = "yes" \ && test "$gt_cv_func_ngettext_libc" = "yes"; then gt_cv_func_dgettext_libintl=no fi fi fi fi if test "$gt_cv_func_dgettext_libc" = "yes" \ || test "$gt_cv_func_dgettext_libintl" = "yes"; then gt_cv_have_gettext=yes fi if test "$gt_cv_func_dgettext_libintl" = "yes"; then INTLLIBS="-lintl $libintl_extra_libs" fi if test "$gt_cv_have_gettext" = "yes"; then cat >>confdefs.h <<\_ACEOF #define HAVE_GETTEXT 1 _ACEOF # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case "$MSGFMT" in /*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then ac_cv_path_MSGFMT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != "no"; then { echo "$as_me:$LINENO: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$ac_func || defined __stub___$ac_func choke me #endif int main () { return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_var'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done MSGFMT_OPTS= { echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5 echo $ECHO_N "checking if msgfmt accepts -c... $ECHO_C" >&6; } cat >conftest.foo <<_ACEOF msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" _ACEOF if { (echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5 ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then MSGFMT_OPTS=-c; { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } echo "$as_me: failed input was:" >&5 sed 's/^/| /' conftest.foo >&5 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { echo "$as_me:$LINENO: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case "$XGETTEXT" in /*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then ac_cv_path_XGETTEXT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then CATOBJEXT=.gmo DATADIRNAME=share else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 case $host in *-*-solaris*) { echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6; } if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define bind_textdomain_codeset to an innocuous variant, in case declares bind_textdomain_codeset. For example, HP-UX 11i declares gettimeofday. */ #define bind_textdomain_codeset innocuous_bind_textdomain_codeset /* System header to define __stub macros and hopefully few prototypes, which can conflict with char bind_textdomain_codeset (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef bind_textdomain_codeset /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char bind_textdomain_codeset (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset choke me #endif int main () { return bind_textdomain_codeset (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_bind_textdomain_codeset=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_bind_textdomain_codeset=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6; } if test $ac_cv_func_bind_textdomain_codeset = yes; then CATOBJEXT=.gmo DATADIRNAME=share else CATOBJEXT=.mo DATADIRNAME=lib fi ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS="$glib_save_LIBS" INSTOBJEXT=.mo else gt_cv_have_gettext=no fi fi fi if test "$gt_cv_have_gettext" = "yes" ; then cat >>confdefs.h <<\_ACEOF #define ENABLE_NLS 1 _ACEOF fi if test "$XGETTEXT" != ":"; then if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else { echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6; } XGETTEXT=":" fi fi # We need to process the po/ directory. POSUB=po ac_config_commands="$ac_config_commands default-1" for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" done if test "$gt_cv_have_gettext" = "yes"; then if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else { echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6; } NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then NEW_LINGUAS="$NEW_LINGUAS $presentlang" fi done LINGUAS=$NEW_LINGUAS { echo "$as_me:$LINENO: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6; } fi if test -n "$LINGUAS"; then for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then posrcprefix="$srcdir/" else posrcprefix="../$srcdir/" fi else posrcprefix="../" fi rm -f po/POTFILES sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ < $srcdir/po/POTFILES.in > po/POTFILES { echo "$as_me:$LINENO: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { echo "$as_me:$LINENO: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6; } case "$am__api_version" in 1.01234) { { echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5 echo "$as_me: error: Automake 1.5 or newer is required to use intltool" >&2;} { (exit 1); exit 1; }; } ;; *) ;; esac if test -n "0.35.0"; then { echo "$as_me:$LINENO: checking for intltool >= 0.35.0" >&5 echo $ECHO_N "checking for intltool >= 0.35.0... $ECHO_C" >&6; } INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` { echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5 echo "${ECHO_T}$INTLTOOL_APPLIED_VERSION found" >&6; } test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || { { echo "$as_me:$LINENO: error: Your intltool is too old. You need intltool 0.35.0 or later." >&5 echo "$as_me: error: Your intltool is too old. You need intltool 0.35.0 or later." >&2;} { (exit 1); exit 1; }; } fi # Extract the first word of "intltool-update", so it can be a program name with args. set dummy intltool-update; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $INTLTOOL_UPDATE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE if test -n "$INTLTOOL_UPDATE"; then { echo "$as_me:$LINENO: result: $INTLTOOL_UPDATE" >&5 echo "${ECHO_T}$INTLTOOL_UPDATE" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "intltool-merge", so it can be a program name with args. set dummy intltool-merge; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $INTLTOOL_MERGE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE if test -n "$INTLTOOL_MERGE"; then { echo "$as_me:$LINENO: result: $INTLTOOL_MERGE" >&5 echo "${ECHO_T}$INTLTOOL_MERGE" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "intltool-extract", so it can be a program name with args. set dummy intltool-extract; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $INTLTOOL_EXTRACT in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT if test -n "$INTLTOOL_EXTRACT"; then { echo "$as_me:$LINENO: result: $INTLTOOL_EXTRACT" >&5 echo "${ECHO_T}$INTLTOOL_EXTRACT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then { { echo "$as_me:$LINENO: error: The intltool scripts were not found. Please install intltool." >&5 echo "$as_me: error: The intltool scripts were not found. Please install intltool." >&2;} { (exit 1); exit 1; }; } fi INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< $@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@' INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' # Check the gettext tools to make sure they are GNU # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $XGETTEXT in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi XGETTEXT=$ac_cv_path_XGETTEXT if test -n "$XGETTEXT"; then { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_MSGMERGE+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MSGMERGE in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi MSGMERGE=$ac_cv_path_MSGMERGE if test -n "$MSGMERGE"; then { echo "$as_me:$LINENO: result: $MSGMERGE" >&5 echo "${ECHO_T}$MSGMERGE" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi MSGFMT=$ac_cv_path_MSGFMT if test -n "$MSGFMT"; then { echo "$as_me:$LINENO: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { echo "$as_me:$LINENO: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} { (exit 1); exit 1; }; } fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} { (exit 1); exit 1; }; } fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $INTLTOOL_PERL in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL if test -n "$INTLTOOL_PERL"; then { echo "$as_me:$LINENO: result: $INTLTOOL_PERL" >&5 echo "${ECHO_T}$INTLTOOL_PERL" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test -z "$INTLTOOL_PERL"; then { { echo "$as_me:$LINENO: error: perl not found; required for intltool" >&5 echo "$as_me: error: perl not found; required for intltool" >&2;} { (exit 1); exit 1; }; } fi if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then { { echo "$as_me:$LINENO: error: perl 5.x required for intltool" >&5 echo "$as_me: error: perl 5.x required for intltool" >&2;} { (exit 1); exit 1; }; } fi if test "x" != "xno-xml"; then { echo "$as_me:$LINENO: checking for XML::Parser" >&5 echo $ECHO_N "checking for XML::Parser... $ECHO_C" >&6; } if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then { echo "$as_me:$LINENO: result: ok" >&5 echo "${ECHO_T}ok" >&6; } else { { echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5 echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;} { (exit 1); exit 1; }; } fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile # Set DATADIRNAME correctly if it is not set yet # (copied from glib-gettext.m4) if test -z "$DATADIRNAME"; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then DATADIRNAME=share else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 case $host in *-*-solaris*) { echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6; } if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define bind_textdomain_codeset to an innocuous variant, in case declares bind_textdomain_codeset. For example, HP-UX 11i declares gettimeofday. */ #define bind_textdomain_codeset innocuous_bind_textdomain_codeset /* System header to define __stub macros and hopefully few prototypes, which can conflict with char bind_textdomain_codeset (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef bind_textdomain_codeset /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char bind_textdomain_codeset (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset choke me #endif int main () { return bind_textdomain_codeset (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_bind_textdomain_codeset=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_bind_textdomain_codeset=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6; } if test $ac_cv_func_bind_textdomain_codeset = yes; then DATADIRNAME=share else DATADIRNAME=lib fi ;; *) DATADIRNAME=lib ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { echo "$as_me:$LINENO: checking for BIBSHELF" >&5 echo $ECHO_N "checking for BIBSHELF... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$BIBSHELF_CFLAGS"; then pkg_cv_BIBSHELF_CFLAGS="$BIBSHELF_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl\"") >&5 ($PKG_CONFIG --exists --print-errors "gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_BIBSHELF_CFLAGS=`$PKG_CONFIG --cflags "gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$BIBSHELF_LIBS"; then pkg_cv_BIBSHELF_LIBS="$BIBSHELF_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl\"") >&5 ($PKG_CONFIG --exists --print-errors "gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_BIBSHELF_LIBS=`$PKG_CONFIG --libs "gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then BIBSHELF_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl"` else BIBSHELF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl"` fi # Put the nasty error message in config.log where it belongs echo "$BIBSHELF_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl) were not met: $BIBSHELF_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables BIBSHELF_CFLAGS and BIBSHELF_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl) were not met: $BIBSHELF_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables BIBSHELF_CFLAGS and BIBSHELF_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables BIBSHELF_CFLAGS and BIBSHELF_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables BIBSHELF_CFLAGS and BIBSHELF_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else BIBSHELF_CFLAGS=$pkg_cv_BIBSHELF_CFLAGS BIBSHELF_LIBS=$pkg_cv_BIBSHELF_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi ac_config_files="$ac_config_files Makefile src/Makefile po/Makefile.in pixmaps/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_unset $ac_var ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote # substitution turns \\\\ into \\, and sed turns \\ into \). sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then test "x$cache_file" != "x/dev/null" && { echo "$as_me:$LINENO: updating cache $cache_file" >&5 echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi ac_config_commands="$ac_config_commands po/stamp-it" : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # PATH needs CR # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) as_nl=' ' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. case $0 in *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. Blame Lee # E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir fi echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 # Save the log message, to keep $[0] and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by bibshelf $as_me 1.6.0, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ bibshelf config.status 1.6.0 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2006 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. ac_need_defaults=: while test $# != 0 do case $1 in --*=*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) echo "$ac_cs_version"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header { echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; };; --help | --hel | -h ) echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) { echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *) ac_config_targets="$ac_config_targets $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF if \$ac_cs_recheck; then echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 CONFIG_SHELL=$SHELL export CONFIG_SHELL exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "pixmaps/Makefile") CONFIG_FILES="$CONFIG_FILES pixmaps/Makefile" ;; "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # # Set up the sed scripts for CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "$CONFIG_FILES"; then _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF SHELL!$SHELL$ac_delim PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim PACKAGE_NAME!$PACKAGE_NAME$ac_delim PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim PACKAGE_STRING!$PACKAGE_STRING$ac_delim PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim exec_prefix!$exec_prefix$ac_delim prefix!$prefix$ac_delim program_transform_name!$program_transform_name$ac_delim bindir!$bindir$ac_delim sbindir!$sbindir$ac_delim libexecdir!$libexecdir$ac_delim datarootdir!$datarootdir$ac_delim datadir!$datadir$ac_delim sysconfdir!$sysconfdir$ac_delim sharedstatedir!$sharedstatedir$ac_delim localstatedir!$localstatedir$ac_delim includedir!$includedir$ac_delim oldincludedir!$oldincludedir$ac_delim docdir!$docdir$ac_delim infodir!$infodir$ac_delim htmldir!$htmldir$ac_delim dvidir!$dvidir$ac_delim pdfdir!$pdfdir$ac_delim psdir!$psdir$ac_delim libdir!$libdir$ac_delim localedir!$localedir$ac_delim mandir!$mandir$ac_delim DEFS!$DEFS$ac_delim ECHO_C!$ECHO_C$ac_delim ECHO_N!$ECHO_N$ac_delim ECHO_T!$ECHO_T$ac_delim LIBS!$LIBS$ac_delim build_alias!$build_alias$ac_delim host_alias!$host_alias$ac_delim target_alias!$target_alias$ac_delim PACKAGE_PIXMAPS_DIR!$PACKAGE_PIXMAPS_DIR$ac_delim INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim INSTALL_DATA!$INSTALL_DATA$ac_delim am__isrc!$am__isrc$ac_delim CYGPATH_W!$CYGPATH_W$ac_delim PACKAGE!$PACKAGE$ac_delim VERSION!$VERSION$ac_delim ACLOCAL!$ACLOCAL$ac_delim AUTOCONF!$AUTOCONF$ac_delim AUTOMAKE!$AUTOMAKE$ac_delim AUTOHEADER!$AUTOHEADER$ac_delim MAKEINFO!$MAKEINFO$ac_delim install_sh!$install_sh$ac_delim STRIP!$STRIP$ac_delim INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim mkdir_p!$mkdir_p$ac_delim AWK!$AWK$ac_delim SET_MAKE!$SET_MAKE$ac_delim am__leading_dot!$am__leading_dot$ac_delim AMTAR!$AMTAR$ac_delim am__tar!$am__tar$ac_delim am__untar!$am__untar$ac_delim MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim MAINT!$MAINT$ac_delim CC!$CC$ac_delim CFLAGS!$CFLAGS$ac_delim LDFLAGS!$LDFLAGS$ac_delim CPPFLAGS!$CPPFLAGS$ac_delim ac_ct_CC!$ac_ct_CC$ac_delim EXEEXT!$EXEEXT$ac_delim OBJEXT!$OBJEXT$ac_delim DEPDIR!$DEPDIR$ac_delim am__include!$am__include$ac_delim am__quote!$am__quote$ac_delim AMDEP_TRUE!$AMDEP_TRUE$ac_delim AMDEP_FALSE!$AMDEP_FALSE$ac_delim AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim CCDEPMODE!$CCDEPMODE$ac_delim am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim CXX!$CXX$ac_delim CXXFLAGS!$CXXFLAGS$ac_delim ac_ct_CXX!$ac_ct_CXX$ac_delim CXXDEPMODE!$CXXDEPMODE$ac_delim am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim CPP!$CPP$ac_delim GREP!$GREP$ac_delim EGREP!$EGREP$ac_delim GETTEXT_PACKAGE!$GETTEXT_PACKAGE$ac_delim USE_NLS!$USE_NLS$ac_delim MSGFMT!$MSGFMT$ac_delim MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim GMSGFMT!$GMSGFMT$ac_delim XGETTEXT!$XGETTEXT$ac_delim CATALOGS!$CATALOGS$ac_delim CATOBJEXT!$CATOBJEXT$ac_delim DATADIRNAME!$DATADIRNAME$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF CEOF$ac_eof _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF GMOFILES!$GMOFILES$ac_delim INSTOBJEXT!$INSTOBJEXT$ac_delim INTLLIBS!$INTLLIBS$ac_delim PO_IN_DATADIR_TRUE!$PO_IN_DATADIR_TRUE$ac_delim PO_IN_DATADIR_FALSE!$PO_IN_DATADIR_FALSE$ac_delim POFILES!$POFILES$ac_delim POSUB!$POSUB$ac_delim MKINSTALLDIRS!$MKINSTALLDIRS$ac_delim INTLTOOL_UPDATE!$INTLTOOL_UPDATE$ac_delim INTLTOOL_MERGE!$INTLTOOL_MERGE$ac_delim INTLTOOL_EXTRACT!$INTLTOOL_EXTRACT$ac_delim INTLTOOL_DESKTOP_RULE!$INTLTOOL_DESKTOP_RULE$ac_delim INTLTOOL_DIRECTORY_RULE!$INTLTOOL_DIRECTORY_RULE$ac_delim INTLTOOL_KEYS_RULE!$INTLTOOL_KEYS_RULE$ac_delim INTLTOOL_PROP_RULE!$INTLTOOL_PROP_RULE$ac_delim INTLTOOL_OAF_RULE!$INTLTOOL_OAF_RULE$ac_delim INTLTOOL_PONG_RULE!$INTLTOOL_PONG_RULE$ac_delim INTLTOOL_SERVER_RULE!$INTLTOOL_SERVER_RULE$ac_delim INTLTOOL_SHEET_RULE!$INTLTOOL_SHEET_RULE$ac_delim INTLTOOL_SOUNDLIST_RULE!$INTLTOOL_SOUNDLIST_RULE$ac_delim INTLTOOL_UI_RULE!$INTLTOOL_UI_RULE$ac_delim INTLTOOL_XAM_RULE!$INTLTOOL_XAM_RULE$ac_delim INTLTOOL_KBD_RULE!$INTLTOOL_KBD_RULE$ac_delim INTLTOOL_XML_RULE!$INTLTOOL_XML_RULE$ac_delim INTLTOOL_XML_NOMERGE_RULE!$INTLTOOL_XML_NOMERGE_RULE$ac_delim INTLTOOL_CAVES_RULE!$INTLTOOL_CAVES_RULE$ac_delim INTLTOOL_SCHEMAS_RULE!$INTLTOOL_SCHEMAS_RULE$ac_delim INTLTOOL_THEME_RULE!$INTLTOOL_THEME_RULE$ac_delim INTLTOOL_SERVICE_RULE!$INTLTOOL_SERVICE_RULE$ac_delim INTLTOOL_POLICY_RULE!$INTLTOOL_POLICY_RULE$ac_delim MSGMERGE!$MSGMERGE$ac_delim INTLTOOL_PERL!$INTLTOOL_PERL$ac_delim ALL_LINGUAS!$ALL_LINGUAS$ac_delim PKG_CONFIG!$PKG_CONFIG$ac_delim BIBSHELF_CFLAGS!$BIBSHELF_CFLAGS$ac_delim BIBSHELF_LIBS!$BIBSHELF_LIBS$ac_delim LIBOBJS!$LIBOBJS$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 38; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF :end s/|#_!!_#|//g CEOF$ac_eof _ACEOF # VPATH may cause trouble with some makes, so we remove $(srcdir), # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=/{ s/:*\$(srcdir):*/:/ s/:*\${srcdir}:*/:/ s/:*@srcdir@:*/:/ s/^\([^=]*=[ ]*\):*/\1/ s/:*$// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF fi # test -n "$CONFIG_FILES" for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 echo "$as_me: error: Invalid tag $ac_tag." >&2;} { (exit 1); exit 1; }; };; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 echo "$as_me: error: cannot find input file: $ac_f" >&2;} { (exit 1); exit 1; }; };; esac ac_file_inputs="$ac_file_inputs $ac_f" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input="Generated from "`IFS=: echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} fi case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin";; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` { as_dir="$ac_dir" case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= case `sed -n '/datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p ' $ac_file_inputs` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s&@configure_input@&$configure_input&;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&5 echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&2;} rm -f "$tmp/stdin" case $ac_file in -) cat "$tmp/out"; rm -f "$tmp/out";; *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; esac ;; :H) # # CONFIG_HEADER # _ACEOF # Transform confdefs.h into a sed script `conftest.defines', that # substitutes the proper values into config.h.in to produce config.h. rm -f conftest.defines conftest.tail # First, append a space to every undef/define line, to ease matching. echo 's/$/ /' >conftest.defines # Then, protect against being on the right side of a sed subst, or in # an unquoted here document, in config.status. If some macros were # called several times there might be several #defines for the same # symbol, which is useless. But do not sort them, since the last # AC_DEFINE must be honored. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where # NAME is the cpp macro being defined, VALUE is the value it is being given. # PARAMS is the parameter list in the macro definition--in most cases, it's # just an empty string. ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' ac_dB='\\)[ (].*,\\1define\\2' ac_dC=' ' ac_dD=' ,' uniq confdefs.h | sed -n ' t rset :rset s/^[ ]*#[ ]*define[ ][ ]*// t ok d :ok s/[\\&,]/\\&/g s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p ' >>conftest.defines # Remove the space that was appended to ease matching. # Then replace #undef with comments. This is necessary, for # example, in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. # (The regexp can be short, since the line contains either #define or #undef.) echo 's/ $// s,^[ #]*u.*,/* & */,' >>conftest.defines # Break up conftest.defines: ac_max_sed_lines=50 # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" # et cetera. ac_in='$ac_file_inputs' ac_out='"$tmp/out1"' ac_nxt='"$tmp/out2"' while : do # Write a here document: cat >>$CONFIG_STATUS <<_ACEOF # First, check the format of the line: cat >"\$tmp/defines.sed" <<\\CEOF /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def b :def _ACEOF sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail grep . conftest.tail >/dev/null || break rm -f conftest.defines mv conftest.tail conftest.defines done rm -f conftest.defines conftest.tail echo "ac_result=$ac_in" >>$CONFIG_STATUS cat >>$CONFIG_STATUS <<\_ACEOF if test x"$ac_file" != x-; then echo "/* $configure_input */" >"$tmp/config.h" cat "$ac_result" >>"$tmp/config.h" if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else rm -f $ac_file mv "$tmp/config.h" $ac_file fi else echo "/* $configure_input */" cat "$ac_result" fi rm -f "$tmp/out12" # Compute $ac_file's index in $config_headers. _am_arg=$ac_file _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` { as_dir=$dirpart/$fdir case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac ;; "po/stamp-it":C) if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" ; then { { echo "$as_me:$LINENO: error: po/Makefile.in.in was not created by intltoolize." >&5 echo "$as_me: error: po/Makefile.in.in was not created by intltoolize." >&2;} { (exit 1); exit 1; }; } fi rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" >"po/stamp-it.tmp" sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r po/POTFILES } ' "po/Makefile.in" >"po/Makefile" rm -f "po/Makefile.tmp" mv "po/stamp-it.tmp" "po/stamp-it" ;; esac done # for ac_tag { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || { (exit 1); exit 1; } fi bibshelf-1.6.0/mkinstalldirs0000755000175000017500000000370411132460407013025 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain errstatus=0 dirmode="" usage="\ Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" 1>&2 exit 0 ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac case $dirmode in '') if mkdir -p -- . 2>/dev/null; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" fi ;; *) if mkdir -m "$dirmode" -p -- . 2>/dev/null; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" fi ;; esac for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr="" chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp="$pathcomp/" done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 2 # End: # mkinstalldirs ends here bibshelf-1.6.0/Makefile.am0000644000175000017500000000133411105623241012245 00000000000000## Process this file with automake to produce Makefile.in ## Created by Anjuta SUBDIRS = src po \ pixmaps bibshelfdocdir = ${prefix}/doc/bibshelf bibshelfdoc_DATA = \ README\ COPYING\ AUTHORS\ ChangeLog\ INSTALL\ NEWS desktopdir = ${prefix}/share/applications desktop_in_file = bibshelf.desktop.in desktop_DATA = $(desktop_in_file:.desktop.in=.desktop) @INTLTOOL_DESKTOP_RULE@ EXTRA_DIST = $(bibshelfdoc_DATA) \ bibshelf.desktop.in.in %.desktop.in: %.desktop.in.in sed -e 's,[@]PACKAGE_PIXMAPS_DIR[@],@datadir@/bibshelf,g' $< > $@ # Copy all the spec files. Of cource, only one is actually used. dist-hook: for specfile in *.spec; do \ if test -f $$specfile; then \ cp -p $$specfile $(distdir); \ fi \ done bibshelf-1.6.0/po/0000777000175000017500000000000011132460423010713 500000000000000bibshelf-1.6.0/po/nn.po0000644000175000017500000002407411111245736011616 00000000000000# Norwegian Nynorsk translation for bibshelf. # This file is distributed under the same license as the bibshelf package. # Eivind ØdegÃ¥rd , 2008. msgid "" msgstr "" "Project-Id-Version: bibshelf 1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2008-11-20 12:33+0100\n" "Last-Translator: Eivind ØdegÃ¥rd \n" "Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Norwegian Nynorsk\n" "X-Poedit-Country: NORWAY\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Ukjend" #: src/Book.cc:27 msgid "New Book" msgstr "Ny bok" #: src/Book.cc:28 msgid "Undefined" msgstr "Udefinert" #: src/Book.cc:178 msgid "Not yet read" msgstr "Ikkje lesen enno" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Forfattar:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Tittel:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Kategori:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Vurdering:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Lesen:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Samandrag:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Bokmelding:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biografi" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Born" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Klassikar" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drama" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Skjønnlitteratur" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Helse" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Historie" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Skrekk" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Humor" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Anna" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Poesi" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Oppslagsverk" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Religion" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romantikk" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Vitskap" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Fantasilitteratur" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Spenning" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Ikkje vurdert enno" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Bok utan namn" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Sorter etter _forfattar" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Sorter etter _tittel" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Sorter etter _kategori" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Sorter etter _dato lesen" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Sorter etter _vurdering" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Legg til bok" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Slett bok" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Vis detaljar" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Fil" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Vis" #: src/DialogMain.cc:91 msgid "_Help" msgstr "_Hjelp" #: src/DialogMain.cc:94 msgid "_About" msgstr "_Om" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Bokorganisering" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "Ukjent ISBN" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Bokorganisering" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Bokliste" #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i bøker i lista):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Tittel og forfattar" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Kategori" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Lesen den..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Vurdering" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Greidde ikkje laga eller opna bokmappa" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Greidde ikkje laga mappa som inneheld bokdokumenta.\n" "Dette skjer vanlegvis pÃ¥ grunn av problem med tilgangsrettane dette programmet har til filene.\n" "Pass pÃ¥ at programmet har alle rettar til \"%s\", og prøv att etterpÃ¥. Lei for umaken." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Greidde ikkje opna bokmappa" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Greidde ikkje opna mappa som inneheld bokdokumenta.\n" "Dette skjer vanlegvis pÃ¥ grunn av problem med tilgangsrettane dette programmet har til filene.\n" "Pass pÃ¥ at programmet har alle rettar til \"%s\", og prøv att etterpÃ¥. Lei for umaken." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Velkomen til %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Versjon %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Vel ei bok frÃ¥ boklista for Ã¥ sjÃ¥ pÃ¥ henne." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Greidde ikkje laga mappa for \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "Eit mogleg problem kan vera at programmet ikkje har tilgang til Ã¥ laga ei ny mappe pÃ¥ denne plasseringa.\n" "\n" "Pass pÃ¥ at programmet har skrivetilgang til \"%s\", og prøv att etterpÃ¥. Lei for umaken." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Greidde ikkje sletta gamal bokinformasjon" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Du har endra forfattaren eller tittelen pÃ¥ ei bok.\n" "Difor mÃ¥ me slette dokumentet som inneheld den gamle tittelen og forfattaren.\n" "Me fekk ikkje til Ã¥ sletta dokumentet, truleg pÃ¥ grunn av problem med tilgangsrettane dette programmet har. Pass pÃ¥ at programmet har alle rettar til \"%s\", og prøv att etterpÃ¥. Lei for umaken." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Greidde ikkje lagra boka \"%s\" av \"%s\"" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "Eit mogleg problem er at programmet ikkje har rettar til Ã¥ laga ei ny mappe pÃ¥ denne plasseringa.\n" "\n" "Pass pÃ¥ at programmet har rettar til Ã¥ lagra i alle mapper under \"%s\", og prøv att etterpÃ¥. Lei for umaken." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Greidde ikkje sletta boka \"%s\" av \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Greidde ikkje fjerna dokumentet med bokopplysningar du vil sletta.\n" "\n" "Dette skjer vanlegvis pÃ¥ grunn av problem med tilgangsrettane dette programmet har til filene.\n" "Pass pÃ¥ at programmet har alle rettar til \"%s\", og prøv att etterpÃ¥. Lei for umaken." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Slett boka \"%s\" av \"%s\"?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "NÃ¥r du slettar ei bok, slettar du alle data. Du kan ikkje angra dette." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Denne utgÃ¥va er omsett av:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Eivind ØdegÃ¥rd " #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf er laga og utgjeve under GPL-lisensen (General Public License V2)\n" "av Samuel Abels\n" "\n" "TheWalrus fann pÃ¥ namnet til programmet." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Takk for at du brukar BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Copyright 2004. Alle rettar atterhaldne." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Rediger bok" bibshelf-1.6.0/po/de.po0000644000175000017500000002564410160007571011573 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.3.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-11 14:44+0100\n" "PO-Revision-Date: 2004-12-15 05:18-0500\n" "Last-Translator: xxx \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Unbekannt" #: src/Book.cc:27 msgid "New Book" msgstr "Neues Buch" #: src/Book.cc:28 msgid "Undefined" msgstr "Unspezifiziert" #: src/Book.cc:178 msgid "Not yet read" msgstr "Noch nicht bewertet" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Autor:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Titel:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Kategorie:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Bewertung:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Gelesen:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Zusammenfassung:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Rezension:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biografie" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Kinderbuch" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Klassisch" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drama" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Fiktion" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Gesundheit" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Geschichte" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Horror" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Humor" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Anderes" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Poesie" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Lehrbuch" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Religion" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romantisch" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Wissenschaft" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Science Fiction" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Thriller" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Noch nicht bewertet" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Unbenanntes Buch" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Nach _Autor sortieren" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Nach _Titel sortieren" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Nach _Kategorie sortieren" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Nach _Datum sortieren" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Nach _Bewertung sortieren" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Buch hinzufügen" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Buch löschen" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Details anzeigen" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Datei" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Ansicht" #: src/DialogMain.cc:91 msgid "_Help" msgstr "_Hilfe" #: src/DialogMain.cc:94 msgid "_About" msgstr "_Über" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Buchverwaltung" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "Unbekannte ISBN" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Buchverwaltung" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Buchliste " #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i Bücher):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Autor und Titel" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Kategorie" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Gelesen am..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Bewertung" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Fehler beim erstellen des Buchverzeichnisses" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions " "given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try " "again. Sorry." msgstr "" "Das Verzeichnis, dass die Buchdaten enthalten soll, konnte nicht erstellt " "werden.\n" "Dies weist zumeist auf ein Problem bei den vom Administrator für das " "Programm vergebenen Rechte hin.\n" "Bitte stellen sie sicher, dass das Programm alle Rechte zur Erstellung des " "Verzeichnisses \"%s\" hat und versuchen sie es noch einmal. Entschuldigung!" #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Konnte das Buchverzeichnis nicht öffnen" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions " "given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try " "again. Sorry." msgstr "" "Das Verzeichnis, dass die Buchdaten enthalten soll, konnte nicht erstellt " "werden.\n" "Dies weist zumeist auf ein Problem bei den vom Administrator für das " "Programm vergebenen Rechte hin.\n" "Bitte stellen sie sicher, dass das Programm alle Rechte zur Erstellung des " "Verzeichnisses \"%s\" hat und versuchen sie es noch einmal. Entschuldigung!" #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Herzlich Willkommen bei %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Version %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "" "Um ein Buch anzuschauen, wählen sie bitte einen Gegenstand aus der Buchliste." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Fehler beim erstellen des Verzeichnisses \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has " "insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" " "and try again. Sorry." msgstr "" "Eine mögliche Ursache für dieses Problem ist, dass dieses Programm nicht die " "notwendigen Rechte hat, um ein Verzeichnis an der gewünschten Position zu " "erstellen.\n" "\n" "Bitte stellen sie sicher, dass das Programm alle Rechte am Verzeichnis \"%s" "\" hat und versuchen sie es noch einmal. Entschuldigung!" #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Fehler beim löschen alter Buchinformationen" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from " "your harddisk.\n" "However, the deletion of this document failed, probably due to a problem " "with the file access restrictions given to this program by the " "administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try " "again. Sorry." msgstr "" "Sie haben versucht, den Titel oder den Autor eines Buches umzubenennen.\n" "Deswegen muss das Dokument, dass den alten Autor und Titel enthielt, " "gelöscht werden.\n" "Beim löschen dieses Dokumentes ist ein Fehler aufgetreten.\n" "Eine mögliche Ursache für dieses Problem ist, dass dieses Programm nicht die " "notwendigen Rechte hat, um ein Verzeichnis an der gewünschten Position zu " "erstellen.\n" "\n" "Bitte stellen sie sicher, dass das Programm alle Rechte am Verzeichnis \"%s" "\" hat und versuchen sie es noch einmal. Entschuldigung!" #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Fehler beim speichern des Buches \"%s\" von \"%s\"" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has " "insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all " "folders below \"%s\" and try again. Sorry." msgstr "" "Eine mögliche Ursache für dieses Problem ist, dass dieses Programm nicht die " "notwendigen Rechte hat, um ein Verzeichnis an der gewünschten Position zu " "erstellen.\n" "\n" "Bitte stellen sie sicher, dass das Programm alle Rechte am Verzeichnis \"%s" "\" hat und versuchen sie es noch einmal. Entschuldigung!" #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Fehler beim löschen des Buches \"%s\" von \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could " "not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions " "given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try " "again. Sorry." msgstr "" "Das Dokument, dass die Daten des Buches enthält, das sie versucht haben zu " "entfernen, konnte nicht gelöscht werden.\n" "Dies weist zumeist auf ein Problem bei den vom Administrator für das " "Programm vergebenen Rechte hin.\n" "Bitte stellen sie sicher, dass das Programm alle Rechte am Verzeichnis \"%s" "\" hat und versuchen sie es noch einmal. Entschuldigung!" #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Das Buch \"%s\" von \"%s\" wirklich löschen?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Löschen eines Buches wird dessen Daten unwiederbringlich vernichten." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Die Übersetzung der deutschen Version stammt von:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Samuel Abels" #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General " "Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf, geschrieben und unter den Bedingungen der GPL (General Public " "License V2) veröffentlicht\n" "von Samuel Abels\n" "\n" "Der Applikationsname wurde von TheWalrus ausgewählt." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Vielen Dank für die Benutzung von BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Copyright 2004. Alle Rechte vorbehalten." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Buch bearbeiten" bibshelf-1.6.0/po/nl.po0000644000175000017500000002465011017313421011604 00000000000000# translation of bibshelf-1.4.0.nl.po to Dutch # This file is distributed under the same license as the bibshelf package. # # Mark Haanen , 2008. msgid "" msgstr "" "Project-Id-Version: bibshelf-1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2008-05-28 19:23+0200\n" "Last-Translator: Mark Haanen \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Onbekend" #: src/Book.cc:27 msgid "New Book" msgstr "Nieuw boek" #: src/Book.cc:28 msgid "Undefined" msgstr "Ongedefinieerd" #: src/Book.cc:178 msgid "Not yet read" msgstr "Nog niet gelezen" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Auteur:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Titel:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Categorie:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Waardering:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Gelezen:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Samenvatting:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Recensie:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biografie" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Kinderboek" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Klassieker" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drama" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Fictie" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Gezondheid" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Geschiedenis" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Horror" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Humor" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Overig" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Poëzie" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Naslagwerk" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Religie" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romantiek" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Wetenschap" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Sciencefiction" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Thriller" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Nog geen waardering toegekend" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Naamloos boek" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Sorteren op _auteur" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Sorteren op _titel" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Sorteren op _categorie" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Sorteren op _datum gelezen" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Sorteren op _waardering" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Boek toevoegen" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Boek verwijderen" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Gegevens tonen" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Bestand" #: src/DialogMain.cc:81 msgid "_View" msgstr "Beel_d" #: src/DialogMain.cc:91 msgid "_Help" msgstr "_Hulp" #: src/DialogMain.cc:94 msgid "_About" msgstr "I_nfo" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Boekenbeheerder" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "Onbekend ISBN" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s ‒ Boekenbeheerder" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Boekenlijst " #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i boeken in de lijst):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Auteur en titel" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Categorie" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Gelezen op …" #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Waardering" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Kan de boekenmap niet aanmaken of benaderen" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "De map met de boekenbestanden kon niet worden aangemaakt.\n" "Dit komt meestal door een probleem met de toegangsrechten die door de beheerder aan dit programma zijn toegekend.\n" "Zorg ervoor dat het programma alle rechten heeft op “%s†en probeer het nogmaals. Sorry." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Kan de boekenmap niet openen" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "De map met boekenbestanden kon niet worden geopend.\n" "Dit komt meestal door een probleem met de toegangsrechten die door de beheerder aan dit programma zijn toegekend.\n" "Zorg ervoor dat het programma alle rechten heeft op “%s†en probeer het nogmaals. Sorry." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Welkom bij %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Versie %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Selecteer een boek in de boekenlijst om het te bekijken." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Kan geen map voor “%s†aanmaken" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "Een mogelijke oorzaak voor dit probleem is dat dit programma onvoldoende rechten heeft om een nieuwe map op de opgegeven locatie aan te maken.\n" "\n" "Zorg ervoor dat het programma schrijfrechten heeft in “%s†en probeer het nogmaals. Sorry." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Kan de oude boekgegevens niet verwijderen" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "U heeft de auteur of de titel van een boek gewijzigd.\n" "Hierdoor moet het bestand met de oude titel en auteur worden verwijderd van uw harde schijf.\n" "Het verwijderen van dit bestand is echter mislukt, waarschijnlijk door een probleem met de toegangsrechten die door de beheerder aan dit programma zijn toegekend.\n" "Zorg ervoor dat het programma alle rechten heeft op “%s†en probeer het nogmaals. Sorry." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Kan het boek “%s†door “%s†niet opslaan" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "Een mogelijke oorzaak voor dit probleem is dat het programma onvoldoende rechten heeft om een nieuw bestand aan te maken op de opgegeven locatie.\n" "\n" "Zorg ervoor dat het programma schrijfrechten heeft in alle mappen onder “%s†en probeer het nogmaals. Sorry." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Kan het boek “%s†door “%s†niet verwijderen" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Het bestand met het boek dat u probeerde te verwijderen kon niet worden verwijderd.\n" "\n" "Dit komt meestal door een probleem met de toegangsrechten die door de beheerder aan dit programma zijn toegekend.\n" "Zorg ervoor dat het programma alle rechten heeft op “%s†en probeer het nogmaals. Sorry." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Het boek “%s†door “%s†verwijderen?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Het verwijderen van een boek zal de bijbehorende gegevens vernietigen en kan niet ongedaan gemaakt worden." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Deze versie is vertaald door:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Mark Haanen" #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf is geschreven door Samuel Abels\n" "en gepubliceerd onder de voorwaarden van\n" "de GPL (General Public Licence V2)\n" "\n" "De programmanaam is gekozen door TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Dank u voor het gebruiken van BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Copyright 2004. Alle rechten voorbehouden." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Boek bewerken" bibshelf-1.6.0/po/ChangeLog0000644000175000017500000000000011105623241012366 00000000000000bibshelf-1.6.0/po/fr.po0000644000175000017500000002476111067444675011632 00000000000000# Messages français pour GNU concernant bibshelf. # Copyright © 2008 Free Software Foundation, Inc. # This file is distributed under the same license as the bibshelf package. # Nicolas Provost , 2008. # msgid "" msgstr "" "Project-Id-Version: bibshelf-1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2008-09-27 16:56+0100\n" "Last-Translator: Nicolas Provost \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" "X-Poedit-Country: FRANCE\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Inconnu(e)" #: src/Book.cc:27 msgid "New Book" msgstr "Nouveau Livre" #: src/Book.cc:28 msgid "Undefined" msgstr "Indéfinie" #: src/Book.cc:178 msgid "Not yet read" msgstr "Pas encore lu" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Auteur :" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Titre :" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN :" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Catégorie :" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Note :" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Lu :" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Résumé :" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Commentaire :" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biographie" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Enfants" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Classique" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drame" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Fiction" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Santé" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Histoire" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Horreur" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Humour" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Autre" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Poésie" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Référence" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Religion" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Roman" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Science" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Science Fiction" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Thriller" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Pas encore noté" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Livre sans titre" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Tri par _Auteur" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Tri par _Titre" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Tri par _Catégorie" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Tri par _Date de lecture" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Tri par _Note" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Ajouter un livre" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Supprimer le livre" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Voir les Détails" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Fichier" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Voir" #: src/DialogMain.cc:91 msgid "_Help" msgstr "Ai_de" #: src/DialogMain.cc:94 msgid "_About" msgstr "_A propos" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Gestionnaire de bibliothèque" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "ISBN inconnu" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Gestionnaire de bibliothèque" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Liste des livres" #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i livres dans la liste) :" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Auteur et Titre" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Catégorie" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Lu le..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Note" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Impossible de créer ou d'accéder au répertoire des livres" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Le répertoire contenant les documents du livre n'a pas pu être crée.\n" "Cela arrive ordinairement suite à un problème de permissions d'accès aux fichiers accordées par l'administrateur.\n" "Assurez-vous que le programme a toutes les permissions sur \"%s\" et réessayez. Désolé." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Impossible d'ouvrir le répertoire des livres." #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Le répertoire contenant les documents du livre n'a pu être ouvert.\n" "Cela arrive ordinairement suite à un problème de permissions d'accès aux fichiers accordées par l'administrateur.\n" "Assurez-vous que le programme a toutes les permissions sur \"%s\" et réessayez. Désolé." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Bienvenue dans %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Version %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Pour voir un livre, sélectionnez un item dans la liste." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Impossible de créer un dossier pour \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "Une des raisons possibles à ce problème est que ce programme ne dispose pas des droits suffisants pour créer un nouveau dossier à cet emplacement.\n" "\n" "Assurez-vous que ce programme a la permission d'écrire dans \"%s\" et réessayez. Désolé." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Impossible d'effacer les informations de l'ancien livre." #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Vous avez modifié l'auteur ou le titre de ce livre.\n" "Le document contenant les anciennes données doit donc être effacé du disque.\n" "Néanmoins, sa suppression a échoué, probablement à cause d'une restriction des droits d'accès aux fichiers accordés par l'administrateur à ce programme.\n" "Assurez-vous que le programme a toutes les permissions sur \"%s\" et réessayez. Désolé." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Impossible d'enregistre le livre \"%s\" de \"%s\"" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "Une des causes possibles à ce problème est que ce programme ne dispose pas de suffisamment de droits pour créer un nouveau fichier à cet emplacement.\n" "\n" "Assurez-vous que le programme a la permission d'écrire dans tous les dossiers sous \"%s\" et réessayez. Désolé." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Impossible d'effacer le livre \"%s\" de \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Le document référençant le livre que vous supprimez n'a pas pu être effacé.\n" "\n" "Cela arrive ordinairement suite à un problème de restriction d'accès aux fichiers selon les droits accordés par l'administrateur.\n" "Assurez-vous que le programme a toutes les permissions sur \"%s\" et réessayez. Désolé." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Supprimer le livre \"%s\" de \"%s\" ?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "La suppression d'un livre détruit ses données et est irréversible." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Traduction de cette version par :" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Nicolas Provost" #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf a été publié sous les termes de la licence GPL (General Public License V2)\n" "par Samuel Abels\n" "\n" "Le nom de l'application a été choisi par TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Merci d'utiliser BibShelf !" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Copyright 2004. All rights reserved." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Editer le Livre" bibshelf-1.6.0/po/wa.po0000644000175000017500000002065210665372430011615 00000000000000# Translation of bibshelf to the walloon language. # Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER # Pablo Saratxaga , 2007. msgid "" msgstr "" "Project-Id-Version: bibshelf 1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2007-08-28 17:24+0200\n" "Last-Translator: Pablo Saratxaga \n" "Language-Team: Walloon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.0.2\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Nén cnoxhou" #: src/Book.cc:27 msgid "New Book" msgstr "Novea live" #: src/Book.cc:28 msgid "Undefined" msgstr "Nén defini" #: src/Book.cc:178 msgid "Not yet read" msgstr "Nén co léjhou" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Oteur:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Tite:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Categoreye:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Pontiaedje:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Léjhou:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Rascourti:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Comitaire:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biyografeye" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Efants" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Classike" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drame" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Prôze racontrece" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Haitisté" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Istwere" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Oreur" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "FÃ¥ves" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Ôte" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Powezeye" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Referince" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Rilidjon" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romantike" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Syince" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Syince-ficcion" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Suspinse" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Nén co pontyî" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Live sins no" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Relére pa _oteur" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Relére pa _tite" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Relére pa _categoreye" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Relére pa _date" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Relére pa _pontiaedje" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Radjouter live" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Disfacer live" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Mostrer detays" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Fitchî" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Vey" #: src/DialogMain.cc:91 msgid "_Help" msgstr "_Aidance" #: src/DialogMain.cc:94 msgid "_About" msgstr "Ã…_d fwait" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Organizeu d' lives" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "ISBN nén cnoxhou" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Organizeu d' lives" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Djivêy di lives: " #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i lives el djivêye):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Oteur et Tite" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Categoreye" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Léjhou li..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Pontiaedje" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Dji n' a nén savou ahiver ou acceder Ã¥ ridant des lives" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Dji n' sai nén drovi l' ridant des lives" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Bénvnowe a %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Modêye %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Po vey on live, tchoezixhoz s' i vs plait on cayet el djivêye." # c-format #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Dji n' a nén savou ahiver on ridant po «%s»" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Dji n' sai nén disfacer l' viye informÃ¥cion do live" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Dji n' sai nén schaper l' live «%s» pa «%s»" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Dji n' sai nén disfacer l' live «%s» pa «%s»" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Disfacer l' live «%s» pa «%s»?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "" #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Ratournaedje di cisse modêye pa:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "" "Pablo Saratxaga \n" "Copinreye: linux-wa@walon.org" #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "GrÃ¥ces po-z eployî BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Copyright 2004. Tos les droets risiervés." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Candjî live" bibshelf-1.6.0/po/vi.po0000644000175000017500000002533710652125075011626 00000000000000# Vietnamese translation for BibShelf. # Copyright © 2007 Free Software Foundation, Inc. # Clytie Siddall , 2005-2007. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2007-07-26 18:35+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.7b1\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Không rõ" #: src/Book.cc:27 msgid "New Book" msgstr "Cuốn má»›i" #: src/Book.cc:28 msgid "Undefined" msgstr "Chưa định nghÄ©a" #: src/Book.cc:178 msgid "Not yet read" msgstr "Chưa Ä‘á»c" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Tác giả:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Tên:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "Số ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Loại:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Äánh giá:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Äá»c:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Tóm tắt:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Phê bình:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Tiểu sá»­" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Trẻ" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Kinh Ä‘iển" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Kịch" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Giả tưởng" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Sức khá»e" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Lịch sá»­" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Kinh dị" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Hài hước" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Khác" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "ThÆ¡" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Tham khảo" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Tôn giáo" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Tình yêu" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Khoa há»c" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Khoa há»c viá»…n" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Giật gân" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Chưa đánh giá" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Cuốn không tên" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Sắp xếp theo Tác _giả" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Sắp xếp theo _Tên" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Sắp xếp theo _Loại" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Sắp xếp theo _Ngày Ä‘á»c" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Sắp xếp theo Äánh g_iá" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Thêm cuốn" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Xóa cuốn" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Xem chi tiết" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Tập tin" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Xem" #: src/DialogMain.cc:91 msgid "_Help" msgstr "Trợ g_iúp" #: src/DialogMain.cc:94 msgid "_About" msgstr "_Giá»›i thiệu" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Tổ chức cuốn" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "Số ISBN lạ" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Tổ chức cuốn" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Danh sách cuốn" #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i cuốn trong danh sách):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Tác giả và Tên" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Loại" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Ngày Ä‘á»c..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Äánh giá" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Không thể tạo hay truy cập thư mục cuốn sách" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Không thể tạo thư mục chứa các tài liệu cuốn sách.\n" "Trưá»ng hợp này thưá»ng do vấn đỠtrong quyá»n hạn truy cập cá»§a chương trình này, được gán bởi quản trị.\n" "Hãy kiểm tra xem chương trình này có má»i quyá»n trên « %s », rồi thá»­ lại." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Không thể mở thư mục cuốn sách" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Không thể mở thư mục chứa các tài liệu cuốn sách.\n" "Trưá»ng hợp này thưá»ng do vấn đỠtrong quyá»n hạn truy cập cá»§a chương trình này, được gán bởi quản trị.\n" "Hãy kiểm tra xem chương trình này có má»i quyá»n trên « %s », rồi thá»­ lại." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Chúc mừng bạn dùng %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Phiên bản %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Äể xem cuốn sách, đơn giản chá»n mục trong danh sách cuốn." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Không thể tạo thư mục cho « %s »" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "Má»™t nguyên nhân có thể cá»§a vấn đỠnày là chương trình này không có đủ quyá»n truy cập để tạo thư mục ở vị trí đó.\n" "\n" "Hãy kiểm tra xem chương trình này có quyá»n ghi vào « %s », rồi thá»­ lại." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Không thể xoá thông tin cuốn cÅ©" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Bạn đã thay đổi tác giả hay tên cá»§a cuốn.\n" "Vì vậy, tài liệu chứa tên/tác giả cÅ© cần phải bị xoá khá»i đĩa cứng.\n" "Tuy nhiên, tiến trình xoá tài liệu này bị lá»—i, rất có thể do quyá»n hạn không đúng.\n" "Hãy kiểm tra xem chương trình này có má»i quyá»n trên « %s », rồi thá»­ lại." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Không thể lưu cuốn « %s » cá»§a « %s »" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "Má»™t nguyên nhân có thể cá»§a vấn đỠnày là chương trình này không có đủ quyá»n truy cập để tạo tập tin má»›i ở vị trí đó.\n" "\n" "Hãy kiểm tra xem chương trình này có quyá»n ghi vào má»i thư mục bên dưới « %s », rồi thá»­ lại." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Không thể xoá cuốn « %s » cá»§a « %s »" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Không thể xoá tài liệu chứa cuốn bạn đã thá»­ gỡ bá».\n" "Trưá»ng hợp này thưá»ng do vấn đỠtrong quyá»n hạn truy cập cá»§a chương trình này, được gán bởi quản trị.\n" "Hãy kiểm tra xem chương trình này có má»i quyá»n trên « %s », rồi thá»­ lại." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Xoá cuốn « %s » cá»§a « %s » không?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Tiến trình xoá cuốn thì há»§y má»i dữ liệu cá»§a nó, không thể phục hồi." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Phiên bản này được dịch bởi:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Clytie Siddall " #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "Chương trình BibShelf đã được lập trình và xuất bản bởi Samuel Abels, vá»›i Ä‘iá»u kiện cá»§a Giấy Phép Công Cá»™ng Gnu, phiên bản 2.\n" "\n" "Tên ứng dụng đã được chá»n bởi TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Cám Æ¡n bạn đã sá»­ dụng trình BibShelf." #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Tác quyá»n © năm 2004. Bảo lưu má»i quyá»n." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Sá»­a cuốn" bibshelf-1.6.0/po/sv.po0000644000175000017500000002464710357710735011650 00000000000000# Swedish translation of bibshelf # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Daniel Nylander , 2005 # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.3.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-11 14:44+0100\n" "PO-Revision-Date: 2005-12-25 02:22+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Okänd" #: src/Book.cc:27 msgid "New Book" msgstr "Ny bok" #: src/Book.cc:28 msgid "Undefined" msgstr "Ej definierad" #: src/Book.cc:178 msgid "Not yet read" msgstr "Ännu inte läst" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Författare:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Titel:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Kategori:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Betyg:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Läst:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Sammandrag:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Recension:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biografi" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Barn" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Klassisk" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drama" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Fiction" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Hälsa" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Historia" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Skräck" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Humor" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Övrigt" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Poesi" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Referens" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Religion" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romantik" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Vetenskap" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Science Fiction" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Thriller" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Ännu inte betygsatt" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Ej namngiven bok" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Sortera efter _författare" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Sortera efter _titel" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Sortera efter _kategori" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Sortera efter _läsdatum" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Sortera efter _betyg" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Lägg till bok" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Ta bort bok" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Visa detaljer" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Fil" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Visa" #: src/DialogMain.cc:91 msgid "_Help" msgstr "_Hjälp" #: src/DialogMain.cc:94 msgid "_About" msgstr "_Om" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Bokorganisatör" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "Okänt ISBN-nummer" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Bokorganisatör" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Boklista" #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i böcker i listan):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Författare och titel" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Kategori" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Läs vidare..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Betyg" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Kunde inte skapa eller tillgÃ¥ bokmappen" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Mappen som innehÃ¥ller bokdokumenten kunde inte skapas.\n" "Detta händer normalt sett pÃ¥ grund av ett problem med filrättigheter som givits till detta program av administratören.\n" "Vänligen se till att programmet har alla rättigheter för \"%s\" och försök igen.Ursäkta." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Kunde inte öppna bokmappen" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Mappen som innehÃ¥ller bokdokumenten kunde inte öppnas.\n" "Detta händer normalt sett pÃ¥ grund av filrättigheterna som givits till detta program av administratören.\n" "Vänligen se till att programmet har alla rättigheter för \"%s\" och försök igen.Ursäkta." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Välkommen till %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Version %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "För att visa en bok, välj en post frÃ¥n boklistan." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Kunde inte skapa en mapp för \"%s" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "En möjlig orsak för detta problem kan vara att detta program saknar tillräckliga rättigheter att skapa en ny mapp pÃ¥ den angivna platsen.\n" "\n" "Vänligen se till att programmet har rättigheter att skriva till \"%s\" och försök igen. Ursäkta." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Kunde inte ta bort gammal bokinformation" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Du har ändrat författare eller titel för en bok.\n" "Därför kommer dokumentet som tillhandahÃ¥ller det gamla namnet och författaren att tas bort frÃ¥n din hÃ¥rddisk.\n" "Borttagningen av detta dokument misslyckades, antagligen pÃ¥ grund av ett problem med filrättigheterna som givits till detta program av administratören.\n" "Vänligen se till att programmet har alla rättigheter för \"%s\" och försök igen.Ursäkta." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Kunde inte spara boken \"%s\" av \"%s" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "En tänkbar anledning för detta problem kan vara att detta program saknar tillräckliga rättigheter att skapa en ny fil pÃ¥ den angivna platsen.\n" "\n" "Vänligen se till att programmet har rättigheter att skriva till alla mappar under \"%s\" och försök igen. Ursäkta." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Kunde inte ta bort boken \"%s\" av \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Dokumentet som innehÃ¥ller den bok du försöker att ta bort kunde inte tas bort.\n" "\n" "Detta händer normalt sett pÃ¥ grund av ett problem med filrättigheterna som givits till detta program av administratören.\n" "Vänligen se till att programmet har alla rättigheter för \"%s\" och försök igen.Ursäkta." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Ta bort boken \"%s\" av \"%s\"?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Borttagning av en bok kommer att förstöra dess data och kan inte Ã¥terställas." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Översättning av denna version av:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Daniel Nylander " #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf skrevs och publiserades under villkoren för GPL (Genereal Public License v2)\n" "av Samuel Abels\n" "\n" "Applikationsnamnet valdes av TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Tack för att du använder BibShelf!" # All rights reserved? Hjälp mig hitta en bättre översättning #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Copyright 2004. Alla rättigheter är reserverade." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Redigera bok" bibshelf-1.6.0/po/id.po0000644000175000017500000002456611051314475011605 00000000000000# Indonesian translations for bibshelf package. # Copyright (C) 2008 THE bibshelf'S COPYRIGHT HOLDER # This file is distributed under the same license as the bibshelf package. # Andhika Padmawan , 2008. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2008-08-15 22:03+0700\n" "Last-Translator: Andhika Padmawan \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Tak Diketahui" #: src/Book.cc:27 msgid "New Book" msgstr "Buku Baru" #: src/Book.cc:28 msgid "Undefined" msgstr "Tak Didefinisikan" #: src/Book.cc:178 msgid "Not yet read" msgstr "Belum dibaca" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Penulis:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Judul:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Kategori:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Peringkat:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Baca:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Ringkasan:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Ulasan:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biografi" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Anak" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Klasik" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drama" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Fiksi" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Kesehatan" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Sejarah" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Horor" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Humor" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Lainnya" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Puisi" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Referensi" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Agama" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Roman" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Ilmiah" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Fiksi Ilmiah" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Cerita Getaran" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Belum diperingkatkan" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Buku Tak Dinamai" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Urut Menurut _Penulis" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Urut Menurut _Judul" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Urut Menurut _Kategori" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Urut Menurut Tanggal _Baca" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Urut Menurut _Peringkat" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Tambah Buku" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Hapus Buku" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Tampilkan Detail" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Berkas" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Tampilan" #: src/DialogMain.cc:91 msgid "_Help" msgstr "B_antuan" #: src/DialogMain.cc:94 msgid "_About" msgstr "T_entang" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Pengorganisasi Buku" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "ISBN Tak Diketahui" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Pengorganisasi Buku" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Senarai Buku " #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i buku di senarai):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Penulis dan Judul" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Kategori" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Baca di..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Peringkat" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Tak dapat membuat atau mengakses folder buku" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Folder yang berisi dokumen buku tak dapat dibuat.\n" "Ini biasanya terjadi karena masalah dengan pembatasan akses berkas yang diberikan ke program ini oleh administrator.\n" "Tolong pastikan bahwa program memiliki semua hak akses pada \"%s\" lalu coba lagi. Maaf." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Tak dapat membuat folder buku" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Folder yang berisi dokumen buku tak dapat dibuka.\n" "Ini biasanya terjadi karena masalah dengan pembatasan akses berkas yang diberikan ke program ini oleh administrator.\n" "Tolong pastikan bahwa program memiliki semua hak akses pada \"%s\" lalu coba lagi. Maaf." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Selamat Datang di %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Versi %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Untuk melihat buku, silakan pilih item dari senarai buku." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Tak dapat membuat folder untuk \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "Salah satu kemungkinan penyebab masalah ini adalah karena program ini memiliki hak akses yang tidak cukup untuk membuat folder baru di lokasi yang diberikan.\n" "\n" "Tolong pastikan bahwa program ini memiliki hak akses untuk menulis ke \"%s\" lalu coba lagi. Maaf." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Tak dapat menghapus informasi buku lama" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Anda telah mengganti penulis atau judul buku.\n" "Maka dokumen yang memiliki nama dan penulis lama perlu dihapus dari cakram keras anda.\n" "Tapi, penghapusan dokumen ini telah gagal, mungkin karena terjadi masalah dengan pembatasan akses berkas yang diberikan ke program ini oleh administrator.\n" "Tolong pastikan bahwa program ini memiliki hak akses di \"%s\" lalu coba lagi. Maaf." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Tak dapat menyimpan buku \"%s\" oleh \"%s\"" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "Salah satu kemungkinan penyebab masalah ini adalah karena program ini memiliki hak akses yang tidak cukup untuk membuat folder baru di lokasi yang diberikan.\n" "\n" "Tolong pastikan bahwa program ini memiliki hak akses untuk menulis ke dalam semua folder di bawah \"%s\" lalu coba lagi. Maaf." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Tak dapat menghapus buku \"%s\" oleh \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Dokumen berisi buku yang sedang anda coba hapus tak dapat dihapus.\n" "\n" "Ini biasanya terjadi karena masalah dengan pembatasan akses berkas yang diberikan ke program ini oleh administrator.\n" "Tolong pastikan bahwa program memiliki semua hak akses pada \"%s\" lalu coba lagi. Maaf." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Hapus buku \"%s\" oleh \"%s\"?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Penghapusan buku akan menghapus datanya dan tak dapat dikembalikan." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Terjemahan versi ini oleh:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Andhika Padmawan , 2008" #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf ditulis dan dipublikasikan di bawah perjanjian GPL (General Public License V2)\n" "oleh Samuel Abels\n" "\n" "Nama aplikasi dipilih oleh TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Terima Kasih telah menggunakan BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Hak Cipta 2004. Hak cipta dilindungi undang-undang." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Sunting Buku" bibshelf-1.6.0/po/es.po0000644000175000017500000002505510160007637011611 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.3.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-11 14:44+0100\n" "PO-Revision-Date: 2004-12-15 05:19-0500\n" "Last-Translator: David Lara \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Desconocido" #: src/Book.cc:27 msgid "New Book" msgstr "Nuevo libro" #: src/Book.cc:28 msgid "Undefined" msgstr "Sin definir" #: src/Book.cc:178 msgid "Not yet read" msgstr "Aún no puntuado" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Autor:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Título:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Categoría:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Puntuación:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Leer:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Sinopsis:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Comentario:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biográfico" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Niños" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Clásico" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drama" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Ficción" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Salud" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Historia" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Horror" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Humor" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Otro" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Poesia" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Referencia" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Religion" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romance" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Ciencia" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Ciencia ficción" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Suspense" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Aún no puntuado" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Libro sin nombre" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Ordenar por _Autor" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Ordenar por _título" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Ordenar por _Categoría" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Ordenar por _fecha" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Ordenar por el _grado" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Añadir libro" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Borrar libro" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Mostrar detalles" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Archivo" #: src/DialogMain.cc:81 msgid "_View" msgstr "" #: src/DialogMain.cc:91 msgid "_Help" msgstr "A_yuda" #: src/DialogMain.cc:94 msgid "_About" msgstr "" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, fuzzy, c-format msgid "Book Organizer" msgstr "Organizador de libros" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "ISBN desconocido" #: src/DialogMain.cc:274 #, fuzzy, c-format msgid "%s - Book Organizer" msgstr "%s - Organizador de libros" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Lista de libros:" #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Autor y título" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Categoría" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "" #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Puntuación" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Imposible crear o acceder al directorio de libros" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions " "given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try " "again. Sorry." msgstr "" "El directorio que contendra los documentos de los libros no puede ser " "creado.\n" "Normalmente, esto sucede debido a un problema con los permisos de acceso al " "fichero proporcionados por el administrador.\n" "Por favor, asegúrese de que el programa tiene permiso completo en \"%s\" y " "vuelva a intentarlo. Lo siento." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Imposible abrir el directorio de libros" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions " "given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try " "again. Sorry." msgstr "" "El directorio que contendra los documentos de los libros no puede ser " "abierto.\n" "Normalmente, esto sucede debido a un problema con los permisos de acceso al " "fichero proporcionados por el administrador.\n" "Por favor, asegúrese de que el programa tiene permiso completo en \"%s\" y " "vuelva a intentarlo. Lo siento." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Bienvenido a %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Versión %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Para ver un libro, por favor seleccionelo de la lista." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Imposible crear un directorio para \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has " "insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" " "and try again. Sorry." msgstr "" "Una posible causa de este problema puede ser debida a que el programa tiene " "permisos insuficientes para crear un nuevo directorio en la ubicación " "seleccionada.\n" "\n" "Por favor, asegúrese de que el programa tiene permisos de escritura en \"%s" "\" y vuelva a intentarlo. Lo siento." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Imposible borrar la información antigua del libro" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from " "your harddisk.\n" "However, the deletion of this document failed, probably due to a problem " "with the file access restrictions given to this program by the " "administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try " "again. Sorry." msgstr "" "Ha cambiado el autor del título de un libro.\n" "El documento que contiene el antiguo nombre del autor debe ser borrado de su " "disco duro.\n" "Sin embargo, el borrado fallo, probablemente debido a un problema con los " "derechos concedidos a este programa por el administrador.\n" "Por favor, asegúrese de que el programa tiene permiso completo en \"%s\" y " "vuelva a intentarlo. Lo siento." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Imposible grabar el libro \"%s\" por \"%s\"" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has " "insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all " "folders below \"%s\" and try again. Sorry." msgstr "" "Una causa posible de este problema puede ser debido a que el programa no " "tiene suficientes derechos para crear un nuevo fichero en el lugar " "seleccionado.\n" "\n" "Por favor, asegúrese que el programa tiene permisos de escritura en todos " "los directorios por debajo de \"%s\" y vuelva a intentarlo. Lo siento." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Imposible borrar el libro \"%s\" por \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could " "not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions " "given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try " "again. Sorry." msgstr "" "El documento que contenia el libro que quiere borrar no ha podido ser " "borrado.\n" "\n" "Normalmente, esto sucede debido a un problema con los permisos de acceso al " "fichero proporcionados por el administrador.\n" "Por favor, asegúrese de que el programa tiene permiso completo en \"%s\" y " "vuelva a intentarlo. Lo siento." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Borrar el libro \"%s\" por \"%s\"?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "El borrado de este libro borrará definitivamente los datos." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Traducción de esta versión por:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "David Lara (Nevat Nohara) and Samuel Abels" #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General " "Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf se ha escrito y publicado bajo los términos de la LicenciaPública " "GNU V2\n" "por Samuel Abels\n" "\n" "El nombre de la aplicación lo escogió TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Gracias por usar BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Copyright 2004. Todos los derechos reservados." #: src/DialogBook.cc:43 #, fuzzy msgid "Edit Book" msgstr "Añadir libro" bibshelf-1.6.0/po/da.po0000644000175000017500000002444211061021775011565 00000000000000# Danish translation of bibshelf. # Copyright (C) 2008 bibshelf. # This file is distributed under the same license as the bibshelf package. # Joe Hansen , 2008. # msgid "" msgstr "" "Project-Id-Version: bibshelf-1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2008-09-07 00:00+0000\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Ukendt" #: src/Book.cc:27 msgid "New Book" msgstr "Ny bog" #: src/Book.cc:28 msgid "Undefined" msgstr "Udefineret" #: src/Book.cc:178 msgid "Not yet read" msgstr "Ikke læst endnu" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Forfatter:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Titel:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Kategori:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Vurdering:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Læst:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Referat:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Anmeldelse:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biografi" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Børnebog" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Klassiker" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drama" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Fiktion" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Sundhed" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Historie" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Gyser" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Humor" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Andre" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Poesi" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Reference" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Religion" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romantik" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Videnskab" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Science fiction" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Thriller" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Endnu ikke vurderet" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Unavngiven bog" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Sorter efter _forfatter" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Sorter efter _titel" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Sorter efter _kategori" # Sorter efter den dato hvor bøgerne er læst (er vel bedre, men for langt). #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Sorter efter _læsedato" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Sorter efter _vurdering" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Tilføj bog" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Slet bog" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Vis detaljer" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Fil" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Vis" #: src/DialogMain.cc:91 msgid "_Help" msgstr "_Hjælp" #: src/DialogMain.cc:94 msgid "_About" msgstr "_Om" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Bogorganisering" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "Ukendt ISBN" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Bogorganisering" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Bogliste " #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i bøger i listen):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Forfatter og titel" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Kategori" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Læs videre..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Vurdering" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Kan ikke oprette eller tilgÃ¥ bogmappen" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Mappen der indeholder bogdokumenterne kunne ikke oprettes.\n" "Det opstÃ¥r normalt nÃ¥r administratoren har pÃ¥ført adgangsrestriktioner pÃ¥ filer til dette program.\n" "PÃ¥se venligst at programmet har alle rettigheder til \"%s\" og forsøg igen. Beklager." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Kan ikke Ã¥bne bogmappen" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Mappen der indeholder bogdokumenterne kunne ikke Ã¥bnes.\n" "Det opstÃ¥r normalt nÃ¥r administratoren har pÃ¥ført adgangsrestriktioner pÃ¥ filer til dette program.\n" "PÃ¥se venligst at programmet har alle rettigheder til \"%s\" og forsøg igen. Beklager." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Velkommen til %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Version %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "For at se en bog, sÃ¥ vælg venligst et punkt i boglisten." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Kan ikke oprette en mappe til \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "En mulig Ã¥rsag til dette problem kan være at programmet har utilstrækkelige rettigheder til at oprette en ny mappe pÃ¥ det givne sted.\n" "\n" "Undersøg venligst om programmet har rettigheder til at skrive til \"%s\" og forsøg igen. Beklager." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Kan ikke slette gammel boginformation" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Du har ændret bogens forfatter eller titel.\n" "Derfor skal det dokument som indeholder det gamle navn og forfatter slettes fra din harddisk.\n" "Denne sletning mislykkedes dog, sikkert pÃ¥ grund af administratoren har pÃ¥ført adgangsrestriktioner pÃ¥ filer til dette program.\n" "Undersøg venligst om programmet har alle rettigheder til \"%s\" og forsøg igen. Beklager." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Kan ikke redde bogen \"%s\" af \"%s\"" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "En mulig Ã¥rsag til dette problem kan være at dette program ikke har tilstrækkelige rettigheder til at oprette en ny fil pÃ¥ det angivne sted.\n" "\n" "PÃ¥se venligst at programmet har rettigheder til at skrive til alle mapper under \"%s\" og forsøg igen. Beklager." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Kan ikke slette bogen \"%s\" af \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Dokumentet som indeholder bogen som du forsøger at fjerne kunne ikke slettes.\n" "\n" "Det opstÃ¥r normalt nÃ¥r administratoren har pÃ¥ført adgangsrestriktioner pÃ¥ filer til dette program.\n" "Undersøg venligst om programmet har alle rettigheder til \"%s\" og forsøg igen. Beklager." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Slet bogen \"%s\" af \"%s\"?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Sletning af en bog vil fjerne alle data vedrørende bogen og kan ikke gøres om." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Oversættelse af denne version af:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "" "Joe Hansen\n" "\n" "Dansk-gruppen \n" "Mere info: http://www.dansk-gruppen.dk" #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf blev skrevet og udgivet under betingelserne i GPL'en (General Public License version 2)\n" "\n" "Programmets navn blev valgt af TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Tak fordi du bruger BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Ophavsret 2004. Alle rettigheder forbeholdt." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Rediger bog" bibshelf-1.6.0/po/LINGUAS0000644000175000017500000000014011110625143011645 00000000000000# please keep this list sorted alphabetically # da de es fr ga id it ms nl nn rw sv vi wa zh_CN bibshelf-1.6.0/po/it.po0000644000175000017500000002512010164372102011603 00000000000000# Italian messages for bibshelf. # Copyright (C) 2004 Samuel Abels. # This file is distributed under the same license as the bibshelf package. # Marco Colombo , 2004. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.3.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-11 14:44+0100\n" "PO-Revision-Date: 2004-12-26 22:36+0000\n" "Last-Translator: Marco Colombo \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Sconosciuto" #: src/Book.cc:27 msgid "New Book" msgstr "Nuovo libro" # Si riferisce a Categoria. #: src/Book.cc:28 msgid "Undefined" msgstr "Non specificata" #: src/Book.cc:178 msgid "Not yet read" msgstr "Non ancora letto" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Autore:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Titolo:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Categoria:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Valutazione:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Letto:" # summary: trama? riassunto? #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Trama:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Recensione:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biografia" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Bambini" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Classico" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Dramma" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Narrativa" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Salute" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Storia" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Orrore" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Umoristico" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Altro" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Poesia" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Riferimento" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Religione" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romantico" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Scienza" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Fantascienza" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Mistero" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Non ancora valutato" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Libro senza nome" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Ordina per _Autore" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Ordina per _Titolo" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Ordina per _Categoria" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Ordina per _Data di lettura" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Ordina per _Valutazione" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Aggiungi libro" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Elimina libro" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Mostra dettagli" #: src/DialogMain.cc:72 msgid "_File" msgstr "_File" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Visualizza" #: src/DialogMain.cc:91 msgid "_Help" msgstr "_Aiuto" #: src/DialogMain.cc:94 msgid "_About" msgstr "_Informazioni" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Organizzatore di libri" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "ISBN sconosciuto" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Organizzatore di libri" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Lista di libri " #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i libri nella lista):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Autore e Titolo" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Categoria" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Letto il..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Valutazione" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Impossibile creare o accedere alla cartella dei libri" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "La cartella contentente i documenti dei libri non può essere creata.\n" "Questo solitamente avviene a causa di restrizioni di accesso ai file stabiliti per questo programma dall'amministratore.\n" "Assicuratevi che il programma abbia tutti i permessi su \"%s\" e riprovate." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Impossibile aprire la cartella dei libri" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "La cartella contentente i documenti dei libri non può essere aperta.\n" "Questo solitamente avviene a causa di restrizioni di accesso ai file stabiliti per questo programma dall'amministratore.\n" "Assicuratevi che il programma abbia tutti i permessi su \"%s\" e riprovate." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Benvenuti a %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Versione %s" # item: elemento??? #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Per vedere un libro, selezionare un elemento dalla lista dei libri." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Impossibile creare una cartella per \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "Una possibile causa di questo problema è che il programma non ha sufficienti permessi per creare una nuova cartella alla posizione indicata.\n" "\n" "Assicuratevi che il programma abbia i permessi di scrittura su \"%s\" e riprovate." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Impossibile eliminare le vecchie informazioni sul libro" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Avete cambiato l'autore o il titolo del libro.\n" "Per questo motivo, il documento contenente il vecchio titolo e autore deve essere eliminato dal disco rigido.\n" "L'eliminazione di questo documento non è riuscita, probabilmente per un problema con i permessi di accesso ai file dati a questo programma dall'amministratore.\n" "Assicuratevi che il programma abbia tutti i permessi su \"%s\" e riprovate." # Impossibile salvare il libro "Titolo" di "Autore" #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Impossibile salvare il libro \"%s\" di \"%s\"" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "Una possibile causa di questo problema è che il programma non ha sufficienti permessi per creare un nuovo file alla posizione indicata.\n" "\n" "Assicuratevi che il programma abbia i permessi di scrittura tutte le cartelle dentro \"%s\" e riprovate." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Impossibile eliminare il libro \"%s\" di \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Il documento contenente il libro che avete cercato di eliminare non è stato eliminato.\n" "\n" "Questo solitamente avviene a causa di un problema con i permessi di accesso ai file dati a questo programma dall'amministratore.\n" "Assicuratevi che il programma abbia tutti i permessi su \"%s\" e riprovate." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Eliminare il libro \"%s\" di \"%s\"?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "L'eliminazione di un libro distruggerà tutte le informazioni e non potrà essere annullata." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Questa versione è stata tradotta da:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Marco Colombo " #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf è stato scritto e pubblicato secondo i termini della licenza GPL (General Public Licence versione 2)\n" "da Samuel Abels\n" "\n" "Il nome di questa applicazione è stato scelto da TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Grazie per aver usato BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Copyright 2004. Tutti i diritti riservati." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Modifica libro" bibshelf-1.6.0/po/ga.po0000644000175000017500000002505410652125107011567 00000000000000# Irish translations for bibshelf. # Copyright (C) 2004 Free Software Foundation, Inc. # This file is distributed under the same license as the bibshelf package. # Kevin Patrick Scannell , 2004, 2007. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2007-07-20 08:31-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Anaithnid" #: src/Book.cc:27 msgid "New Book" msgstr "Leabhar Nua" #: src/Book.cc:28 msgid "Undefined" msgstr "Gan Sainmhíniú" #: src/Book.cc:178 msgid "Not yet read" msgstr "Gan léamh fós" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Údar:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Teideal:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Catagóir:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Meastachán:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Léite:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Achoimre:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Léirmheas:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Beathaisnéis" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Leanaí" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Clasaiceach" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drámaíocht" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Ficsean" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Sláinte" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Stair" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Uafás" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Greann" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Eile" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Filíocht" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Tagairtí" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Creideamh" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Scéalta Grá" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Eolaíocht" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Ficsean Eolaíochta" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Scéinséir" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Gan mheastachán fós" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Leabhar gan ainm" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Sórtáil de réir úd_ar" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Sórtáil de réir _Teideal" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Sórtáil de réir _Catagóir" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Sórtáil de réir _Dáta a Léadh" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Sórtáil de réir _Meastachán" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Leabhar Nua" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Scrios Leabhar" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Taispeáin Sonraí" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Comhad" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Amharc" #: src/DialogMain.cc:91 msgid "_Help" msgstr "Ca_bhair" #: src/DialogMain.cc:94 msgid "_About" msgstr "_Eolas" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Clár Eagraithe Leabhair" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "ISBN Anaithnid" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Clár Eagraithe Leabhair" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Liosta Leabhar " #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i leabhar sa liosta):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Údar agus Teideal" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Catagóir" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Léite ar..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Meastachán" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Ní féidir an fillteán leabhair a chruthú nó a rochtain" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Níorbh fhéidir fillteán a chruthú le haghaidh na gcáipéisí leabhair.\n" "Go hiondúil, tarlaíonn earráid mar seo de bharr go bhfuil fadhb ann leis na ceadanna a thug riarthóir do chórais don chlár seo.\n" "Cinntigh go bhfuil na ceadanna cuí ag an chlár chun \"%s\" a rochtain agus bain triail as arís. Tá brón orm." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Ní féidir an fillteán leabhair a oscailt" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Níorbh fhéidir an fillteán le haghaidh na gcáipéisí leabhair a oscailt.\n" "Go hiondúil, tarlaíonn earráid mar seo de bharr go bhfuil fadhb ann leis na ceadanna a thug riarthóir do chóras don chlár seo.\n" "Cinntigh go bhfuil na ceadanna cuí ag an chlár chun \"%s\" a rochtain agus bain triail as arís. Tá brón orm." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Fáilte go %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Leagan %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Chun breathnú ar leabhar, roghnaigh mír ón liosta leabhar le do thoil." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Ní féidir fillteán a chruthú do \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "Is féidir nach bhfuil cead ag an chlár seo chun fillteán nua a chruthú ag an suíomh ceaptha.\n" "\n" "Cinntigh go bhfuil na ceadanna cuí ag an chlár chun scríobh ar \"%s\" agus bain triail as arís. Tá brón orm." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Ní féidir an t-eolas faoina seanleabhair a scriosadh" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Tá an teideal nó an t-údar den leabhar seo athraithe agat.\n" "Mar sin, ní mór duit an cháipéis a choimeádann an seanainm agus an seanúdar a scriosadh ó do dhiosca crua.\n" "Áfach, theip ar scriosadh na cáipéise seo, is dócha de bharr go bhfuil fadhb ann leis na ceadanna a thug riarthóir do chóras don chlár seo.\n" "Cinntigh go bhfuil na ceadanna cuí ag an chlár chun \"%s\" a rochtain agus bain triail as arís. Tá brón orm." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Ní féidir an leabhar \"%s\" le \"%s\" a shábháil" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "Is féidir nach bhfuil cead ag an chlár seo chun comhad nua a chruthú ag an suíomh ceaptha.\n" "\n" "Cinntigh go bhfuil na ceadanna cuí ag an chlár chun scríobh ar gach fillteán faoi \"%s\" agus bain triail as arís. Tá brón orm." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Ní féidir an leabhar \"%s\" le \"%s\" a scriosadh" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Níorbh fhéidir an cháipéis a choimeádann an leabhar gur mhaith leat a bhaint a scriosadh.\n" "\n" "Go hiondúil, tarlaíonn earráid mar seo de bharr go bhfuil fadhb ann leis na ceadanna a thug riarthóir do chóras don chlár seo.\n" "Cinntigh go bhfuil na ceadanna cuí ag an chlár chun \"%s\" a rochtain agus bain triail as arís. Tá brón orm." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Scrios an leabhar \"%s\" le \"%s\"?" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Má scriosann tú leabhar, scriosfar na sonraí a bhaineann leis agus ní féidir an oibríocht a chur ar ceal." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Arna aistriú go Gaeilge ag:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Kevin Scannell" #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "Scríobh Samuel Abels an clár BibShelf, agus is foilsithe é de réir na gcoinníollacha den GPL (General Public License V2)\n" "\n" "Roghnaigh TheWalrus ainm an fheidhmchláir." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Go raibh míle maith agat as BibShelf a úsáid!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Cóipcheart 2004. Gach ceart cosanta." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Cuir Leabhair in Eagar" bibshelf-1.6.0/po/rw.po0000644000175000017500000002457310224436331011634 00000000000000# Kinyarwanda translations for bibshelf package. # Copyright (C) 2005 Free Software Foundation # This file is distributed under the same license as the bibshelf package. # Steve Murphy , 2005. # Steve performed initial rough translation from compendium built from translations provided by the following translators: # Philibert Ndandali , 2005. # Viateur MUGENZI , 2005. # Noëlla Mupole , 2005. # Carole Karema , 2005. # JEAN BAPTISTE NGENDAHAYO , 2005. # Augustin KIBERWA , 2005. # Donatien NSENGIYUMVA , 2005. # Antoine Bigirimana , 2005. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.3.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-11 14:44+0100\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" # filter/source\xsltdialog\xmlfilterdialogstrings.src:STR_UNKNOWN_APPLICATION.text #: src/Book.cc:26 msgid "Unknown" msgstr "Kitazwi" #: src/Book.cc:27 msgid "New Book" msgstr "" #: src/Book.cc:28 #, fuzzy msgid "Undefined" msgstr "kidasobanuye" #: src/Book.cc:178 #, fuzzy msgid "Not yet read" msgstr "Gusoma" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Umwanditsi:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Umutwe:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 #, fuzzy msgid "ISBN:" msgstr "ISBN" # so3/src\svuidlg.src:MD_DDE_LINKEDIT.FT_DDE_ITEM.text #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 #, fuzzy msgid "Category:" msgstr "Icyiciro" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 #, fuzzy msgid "Rating:" msgstr "Ipima" # svx/inc\globlmn.hrc:ITEM_FILE_MAIL_INBOX.text #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 #, fuzzy msgid "Read:" msgstr "Gusoma" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Incamake:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 #, fuzzy msgid "Review:" msgstr "Isubiramo" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "karasike, cya kera" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Urutonde" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Ikindi" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Indango" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "" #: src/DialogMain.cc:29 #, fuzzy msgid "Sort by _Author" msgstr "ku" #: src/DialogMain.cc:34 #, fuzzy msgid "Sort by _Title" msgstr "ku" #: src/DialogMain.cc:39 #, fuzzy msgid "Sort by _Category" msgstr "ku" #: src/DialogMain.cc:44 #, fuzzy msgid "Sort by Read _Date" msgstr "ku" #: src/DialogMain.cc:49 #, fuzzy msgid "Sort by _Rating" msgstr "ku" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Kwerekana Amasesengurabyose" # sc/source\ui\src\globstr.src:RID_GLOBSTR.STR_HFCMD_FILE.text #: src/DialogMain.cc:72 #, fuzzy msgid "_File" msgstr "IDOSIYE" # #-#-#-#-# basctl.pot (PACKAGE VERSION) #-#-#-#-# # basctl/source\basicide\basidesh.src:RID_BASICMENU.MN_VIEW.text # #-#-#-#-# basctl.pot (PACKAGE VERSION) #-#-#-#-# # basctl/source\basicide\basidesh.src:RID_BASICPLUGINMENU.MN_PLVIEW.text #: src/DialogMain.cc:81 #, fuzzy msgid "_View" msgstr "Kureba" #: src/DialogMain.cc:91 #, fuzzy msgid "_Help" msgstr "Ifashayobora" #: src/DialogMain.cc:94 #, fuzzy msgid "_About" msgstr "Bigyanye" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "" #: src/DialogMain.cc:287 #, fuzzy, c-format msgid "(%i books in the list):" msgstr "(%iin i Urutonde" #: src/GtkBookList.cc:49 #, fuzzy msgid "Author and Title" msgstr "Na" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Icyiciro" #: src/GtkBookList.cc:68 #, fuzzy msgid "Read on..." msgstr "ku" #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Ipima" #: src/Controller.cc:48 #, fuzzy, c-format msgid "Unable to create or access the book folder" msgstr "Kuri Kurema Cyangwa i Igitabo Ububiko" #: src/Controller.cc:51 #, fuzzy, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "Ububiko i Igitabo Inyandiko OYA Byaremwe Kuri a Na: i IDOSIYE Amabwiriza Kuri iyi Porogaramu ku i umuyobozi/ uyobora Ubwoko i Porogaramu Byose Uruhushya ku Na" #: src/Controller.cc:65 #, fuzzy, c-format msgid "Unable to open the book folder" msgstr "Kuri Gufungura i Igitabo Ububiko" #: src/Controller.cc:68 #, fuzzy, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "Ububiko i Igitabo Inyandiko OYA Kuri a Na: i IDOSIYE Amabwiriza Kuri iyi Porogaramu ku i umuyobozi/ uyobora Ubwoko i Porogaramu Byose Uruhushya ku Na" # setup2/source\ui\pages\ppatch.src:RESID_PAGE_PATCH.FT_INFO1.text #: src/Controller.cc:81 #, fuzzy, c-format msgid "Welcome to %s" msgstr "Ikaze kuri %s%PRODUCTPATCHNAME" # sfx2/source\dialog\filedlghelper.src:STR_LB_VERSION.text #: src/Controller.cc:83 #, fuzzy, c-format msgid "Version %s" msgstr "Uburyo:" #: src/Controller.cc:85 #, fuzzy msgid "To view a book, please select an item from the booklist." msgstr "Kureba a Igitabo Guhitamo Ikintu Bivuye i" #: src/Controller.cc:220 #, fuzzy, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Kuri Kurema a Ububiko kugirango" #: src/Controller.cc:224 #, fuzzy, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "kugirango iyi Gicurasi iyi Porogaramu Kuri Kurema a Gishya Ububiko ku i Ahantu Ubwoko i Porogaramu i Uruhushya Kuri Kwandika Na" #: src/Controller.cc:233 #, fuzzy, c-format msgid "Unable to delete old book information" msgstr "Kuri Gusiba ki/ bishaje Igitabo Ibisobanuro" #: src/Controller.cc:236 #, fuzzy, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "Byahinduwe i Umwanditsi Cyangwa i Umutwe Bya a Igitabo i Inyandiko i ki/ bishaje Izina: Na Umwanditsi Kuri Cyasibwe Bivuye i Isibwa Bya iyi Inyandiko Byanze Kuri a Na: i IDOSIYE Amabwiriza Kuri iyi Porogaramu ku i umuyobozi/ uyobora Ubwoko i Porogaramu Byose Uruhushya ku Na" #: src/Controller.cc:248 #, fuzzy, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Kuri Kubika i Igitabo ku" #: src/Controller.cc:252 #, fuzzy, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "kugirango iyi Gicurasi iyi Porogaramu Kuri Kurema a Gishya IDOSIYE ku i Ahantu Ubwoko i Porogaramu i Uruhushya Kuri Kwandika Byose munsi Na" #: src/Controller.cc:302 #, fuzzy, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Kuri Gusiba i Igitabo ku" #: src/Controller.cc:306 #, fuzzy, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "Inyandiko i Igitabo Kuri Gukuraho... OYA Cyasibwe Kuri a Na: i IDOSIYE Amabwiriza Kuri iyi Porogaramu ku i umuyobozi/ uyobora Ubwoko i Porogaramu Byose Uruhushya ku Na" #: src/DialogBookDelete.cc:42 #, fuzzy, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "i Igitabo ku" #: src/DialogBookDelete.cc:43 #, fuzzy msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Bya a Igitabo Ibyatanzwe Na OYA Bicuritswe" #: src/DialogAbout.cc:45 #, fuzzy msgid "Translation of this version by:" msgstr "Bya iyi Verisiyo ku" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "" #: src/DialogAbout.cc:52 #, fuzzy msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "Na i Bya i ku Porogaramu Izina: ku" #: src/DialogAbout.cc:57 #, fuzzy msgid "Thank You for using BibShelf!" msgstr "kugirango ikoresha" #: src/DialogAbout.cc:60 #, fuzzy msgid "Copyright 2004. All rights reserved." msgstr "Uburenganzirabwosentibwemewe." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "" bibshelf-1.6.0/po/ms.po0000644000175000017500000002461210322637050011615 00000000000000# bibshelf Bahasa Melayu (Malay) (ms). # Copyright (C) 2005 Sharuzzaman Ahmat Raslan # This file is distributed under the same license as the bibshelf package. # Sharuzzaman Ahmat Raslan , 2005. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.3.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-11 14:44+0100\n" "PO-Revision-Date: 2005-10-11 12:13+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/Book.cc:26 msgid "Unknown" msgstr "Tidak Diketahui" #: src/Book.cc:27 msgid "New Book" msgstr "Buku Baru" #: src/Book.cc:28 msgid "Undefined" msgstr "Tidak Ditakrif" #: src/Book.cc:178 msgid "Not yet read" msgstr "Belum lagi dibaca" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "Penulis:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "Tajuk:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "Kategori:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "Nilaian:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "Baca:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "Ringkasan:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "Pandangan:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "Biografi" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "Kanak-kanak" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "Klasik" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "Drama" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "Fiksyen" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "Kesihatan" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "Sejarah" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "Seram" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "Jenaka" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "Lain-lain" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "Puisi" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "Rujukan" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "Agama" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "Romance" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "Sains" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "Fiksyen Sains" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "Cerita ngeri" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "Belum lagi dinilai" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "Buku Tanpa Nama" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "Susun berdasarkan _Penulis" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "Susun berdasarkan _Tajuk" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "Susun berdasarkan _Kategori" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "Susun berdasarkan _Tarikh Baca" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "Susun berdasarkan _Nilaian" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "Tambah Buku" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "Padam Buku" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "Papar Perincian" #: src/DialogMain.cc:72 msgid "_File" msgstr "_Fail" #: src/DialogMain.cc:81 msgid "_View" msgstr "_Lihat" #: src/DialogMain.cc:91 msgid "_Help" msgstr "_Bantuan" #: src/DialogMain.cc:94 msgid "_About" msgstr "_Perihal" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "Penyusun Buku" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "ISBN Tidak Diketahui" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - Penyusun Buku" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "Senarai buku" #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i buku didalam senarai):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "Penulis dan Tajuk" #: src/GtkBookList.cc:65 msgid "Category" msgstr "Kategori" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "Terus baca..." #: src/GtkBookList.cc:71 msgid "Rating" msgstr "Nilaian" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "Tidak dapat mencipta atau mengakses folder buku" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Folder yang mengandungi dokumen buku tidak dapat dicipta.\n" "Ini biasanya berlaku kerana masalah dengan kawalan akses fail yang diberikan kepada program ini oleh pentadbir.\n" "Sila pastikan program ini mempunyai semua kebenaran pada \"%s\" dan cuba lagi. Harap maaf." #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "Tidak dapat membuka folder buku" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Folder yang mengandungi dokumen buku tidak dapat dibuka.\n" "Ini biasanya berlaku kerana masalah dengan kawalan akses fail yang diberikan kepada program ini oleh pentadbir.\n" "Sila pastikan program ini mempunyai semua kebenaran pada \"%s\" dan cuba lagi. Harap maaf." #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "Selamat datang ke %s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "Versi %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "Untuk melihat buku, sila pilih satu item dari senarai buku." #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "Tidak dapat membuka folder untuk \"%s\"" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "Satu kemungkinan punca masalah ini adalah dimana program ini tidak mepunyai kebenaran mencukupi untuk mencipta folder baru pada lokasi diberikan.\n" "\n" "Sila pastikan yang program mempunyai kebenaran untuk menulis ke dalam \"%s\" dan cuba lagi. Harap maaf." #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "Tidak dapat memadam maklumat buku lama" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Anda telah mengubah penulis atau tajuk buku.\n" "Oleh itu, dokumen yang menyimpan nama lama atau penulis perlu dipadam dari cakera keras anda.\n" "Walaubagaimanapun, pemadaman dokumen ini gagal, mungkin kerana masalah dengan kebenaran akses fail yang diberikan kepada program ini oleh pentadbir.\n" "Sila pastikan yang program mempunyai semua kebenaran pada \"%s\" dan cuba lagi. Harap maaf." #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "Tidak dapat menyimpan buku \"%s\" dengan \"%s\"" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "Satu kemungkinan punca masalah ini adalah program ini tidak mempunyai cukup kebenaran untuk mencipta fail baru pada lokasi diberikan.\n" "\n" "Sila pastikan yang program mempunyai kebenaran untuk menulis ke dalam semua folder dibawah \"%s\" dan cuba lagi. Harap maaf." #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "Tidak dapat memadam buku \"%s\" dengan \"%s\"" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "Dokumen yang mengandungi buku yang anda telah cuba untuk dibuang tidak dapat dipadam.\n" "\n" "Ini biasa berlaku kerana masalah dengan kebenaran akses fail yang diberikan kepada program ini oleh pentadbir.\n" "Sila pastikan yang program mempunyai semua kebenaran pada \"%s\" dan cuba lagi. Harap maaf." #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "Padam buku \"%s\" dengan \"%s\"" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "Pemadaman buku akan memusnahkan datanya dan tidak boleh diundur." #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "Terjemahan versi ini oleh:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "Sharuzzaman Ahmat Raslan " #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf telah ditulis dan diterbitkan dibawah syarat GPL (General Public License V2)\n" "oleh Samuel Abels\n" "\n" "Nama aplikasi telah dipilih oleh TheWalrus." #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "Terima kasih kerana menggunakan BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "Hakcipta 2004. Semua hak terpelihara." #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "Sunting Buku" bibshelf-1.6.0/po/POTFILES.in0000644000175000017500000000010411105623241012376 00000000000000# List of source files containing translatable strings. src/main.c bibshelf-1.6.0/po/Makefile.in.in0000644000175000017500000001536111132460407013311 00000000000000# Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper # Copyright (C) 2004-2008 Rodney Dawes # # This file may be copied and used freely without restrictions. It may # be used in projects which are not available under a GNU Public License, # but which still want to provide support for the GNU gettext functionality. # # - Modified by Owen Taylor to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ # # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize # # - Modified by Rodney Dawes for use with intltool # # We have the following line for use by intltoolize: # INTLTOOL_MAKEFILE GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = @top_builddir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ datarootdir = @datarootdir@ libdir = @libdir@ DATADIRNAME = @DATADIRNAME@ itlocaledir = $(prefix)/$(DATADIRNAME)/locale subdir = po install_sh = @install_sh@ # Automake >= 1.8 provides @mkdir_p@. # Until it can be supposed, use the safe fallback: mkdir_p = $(install_sh) -d INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot ALL_LINGUAS = @ALL_LINGUAS@ PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep ^$$lang$$`"; then printf "$$lang "; fi; done; fi) USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) DISTFILES = Makefile.in.in POTFILES.in $(POFILES) EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS POTFILES = \ # This comment gets stripped out CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) .SUFFIXES: .SUFFIXES: .po .pox .gmo .mo .msg .cat .po.pox: $(MAKE) $(GETTEXT_PACKAGE).pot $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox .po.mo: $(MSGFMT) -o $@ $< .po.gmo: file=`echo $* | sed 's,.*/,,'`.gmo \ && rm -f $$file && $(GMSGFMT) -o $$file $< .po.cat: sed -f ../intl/po2msg.sed < $< > $*.msg \ && rm -f $@ && gencat $@ $*.msg all: all-@USE_NLS@ all-yes: $(CATALOGS) all-no: $(GETTEXT_PACKAGE).pot: $(POTFILES) $(GENPOT) install: install-data install-data: install-data-@USE_NLS@ install-data-no: all install-data-yes: all linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $$dir; \ if test -r $$lang.gmo; then \ $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ else \ $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ echo "installing $(srcdir)/$$lang.gmo as" \ "$$dir/$(GETTEXT_PACKAGE).mo"; \ fi; \ if test -r $$lang.gmo.m; then \ $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ else \ if test -r $(srcdir)/$$lang.gmo.m ; then \ $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ $$dir/$(GETTEXT_PACKAGE).mo.m; \ echo "installing $(srcdir)/$$lang.gmo.m as" \ "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ else \ true; \ fi; \ fi; \ done # Empty stubs to satisfy archaic automake needs dvi info tags TAGS ID: # Define this as empty until I found a useful application. install-exec installcheck: uninstall: linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ done check: all $(GETTEXT_PACKAGE).pot rm -f missing notexist srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi mostlyclean: rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp rm -f .intltool-merge-cache clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES stamp-it rm -f *.mo *.msg *.cat *.cat.m *.gmo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f Makefile.in.in distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(DISTFILES) dists="$(DISTFILES)"; \ extra_dists="$(EXTRA_DISTFILES)"; \ for file in $$extra_dists; do \ test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ done; \ for file in $$dists; do \ test -f $$file || file="$(srcdir)/$$file"; \ ln $$file $(distdir) 2> /dev/null \ || cp -p $$file $(distdir); \ done update-po: Makefile $(MAKE) $(GETTEXT_PACKAGE).pot tmpdir=`pwd`; \ linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ echo "$$lang:"; \ result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ if $$result; then \ if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.gmo failed!"; \ rm -f $$tmpdir/$$lang.new.po; \ fi; \ done Makefile POTFILES: stamp-it @if test ! -f $@; then \ rm -f stamp-it; \ $(MAKE) stamp-it; \ fi stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ $(SHELL) ./config.status # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: bibshelf-1.6.0/po/zh_CN.po0000644000175000017500000002355610763636256012225 00000000000000# Chinese translations for bibshelf package # bibshelf 软件包的简体中文翻译. # Copyright (C) 2008 THE bibshelf'S COPYRIGHT HOLDER # This file is distributed under the same license as the bibshelf package. # YueGuang , 2008. # msgid "" msgstr "" "Project-Id-Version: bibshelf 1.4.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-15 15:08+0100\n" "PO-Revision-Date: 2008-03-04 22:25+0800\n" "Last-Translator: YueGuang \n" "Language-Team: Chinese (simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/Book.cc:26 msgid "Unknown" msgstr "未知" #: src/Book.cc:27 msgid "New Book" msgstr "新书" #: src/Book.cc:28 msgid "Undefined" msgstr "未定义" #: src/Book.cc:178 msgid "Not yet read" msgstr "未阅读" #: src/DialogBookEditor.cc:29 src/DialogBook.cc:28 msgid "Author:" msgstr "作者:" #: src/DialogBookEditor.cc:30 src/DialogBook.cc:30 msgid "Title:" msgstr "标题:" #: src/DialogBookEditor.cc:31 src/DialogBook.cc:32 msgid "ISBN:" msgstr "ISBN:" #: src/DialogBookEditor.cc:32 src/DialogBook.cc:34 msgid "Category:" msgstr "分类:" #: src/DialogBookEditor.cc:33 src/DialogBook.cc:36 msgid "Rating:" msgstr "等级:" #: src/DialogBookEditor.cc:34 src/DialogBook.cc:37 msgid "Read:" msgstr "阅读:" #: src/DialogBookEditor.cc:36 src/DialogBook.cc:39 msgid "Summary:" msgstr "摘è¦:" #: src/DialogBookEditor.cc:37 src/DialogBook.cc:41 msgid "Review:" msgstr "评论:" #: src/DialogBookEditor.cc:66 msgid "Biography" msgstr "ä¼ è®°" #: src/DialogBookEditor.cc:67 msgid "Children" msgstr "å„¿ç«¥" #: src/DialogBookEditor.cc:68 msgid "Classic" msgstr "ç»å…¸" #: src/DialogBookEditor.cc:69 msgid "Drama" msgstr "æˆå‰§" #: src/DialogBookEditor.cc:70 msgid "Fiction" msgstr "å°è¯´" #: src/DialogBookEditor.cc:71 msgid "Health" msgstr "å¥åº·" #: src/DialogBookEditor.cc:72 msgid "History" msgstr "历å²" #: src/DialogBookEditor.cc:73 msgid "Horror" msgstr "ææ€–" #: src/DialogBookEditor.cc:74 msgid "Humor" msgstr "幽默" #: src/DialogBookEditor.cc:75 msgid "Other" msgstr "å…¶ä»–" #: src/DialogBookEditor.cc:76 msgid "Poetry" msgstr "诗歌" #: src/DialogBookEditor.cc:77 msgid "Reference" msgstr "å‚考" #: src/DialogBookEditor.cc:78 msgid "Religion" msgstr "å®—æ•™" #: src/DialogBookEditor.cc:79 msgid "Romance" msgstr "浪漫" #: src/DialogBookEditor.cc:80 msgid "Science" msgstr "ç§‘å­¦" #: src/DialogBookEditor.cc:81 msgid "Science Fiction" msgstr "ç§‘å¹»å°è¯´" #: src/DialogBookEditor.cc:82 msgid "Thriller" msgstr "刺激" #: src/DialogBookEditor.cc:89 msgid "Not yet rated" msgstr "未分级" #: src/DialogBookEditor.cc:175 src/DialogBook.cc:55 msgid "Unnamed Book" msgstr "未命å图书" #: src/DialogMain.cc:29 msgid "Sort by _Author" msgstr "按作者排åº(_A)" #: src/DialogMain.cc:34 msgid "Sort by _Title" msgstr "按标题排åº(_T)" #: src/DialogMain.cc:39 msgid "Sort by _Category" msgstr "按分类排åº(_C)" #: src/DialogMain.cc:44 msgid "Sort by Read _Date" msgstr "按阅读日期排åº(_D)" #: src/DialogMain.cc:49 msgid "Sort by _Rating" msgstr "按等级排åº(_R)" #: src/DialogMain.cc:54 msgid "Add Book" msgstr "添加图书" #: src/DialogMain.cc:57 src/DialogBookDelete.cc:32 msgid "Delete Book" msgstr "删除图书" #: src/DialogMain.cc:60 msgid "Show Details" msgstr "显示详细信æ¯" #: src/DialogMain.cc:72 msgid "_File" msgstr "文件(_F)" #: src/DialogMain.cc:81 msgid "_View" msgstr "视图(_V)" #: src/DialogMain.cc:91 msgid "_Help" msgstr "帮助(_H)" #: src/DialogMain.cc:94 msgid "_About" msgstr "关于(_A)" #: src/DialogMain.cc:182 src/DialogMain.cc:277 #, c-format msgid "Book Organizer" msgstr "图书整ç†ç¨‹åº" #: src/DialogMain.cc:200 msgid "Unknown ISBN" msgstr "未知ISBN" #: src/DialogMain.cc:274 #, c-format msgid "%s - Book Organizer" msgstr "%s - 图书组织者" #: src/DialogMain.cc:286 msgid "Booklist " msgstr "图书列表" #: src/DialogMain.cc:287 #, c-format msgid "(%i books in the list):" msgstr "(%i 本图书在列表中):" #: src/GtkBookList.cc:49 msgid "Author and Title" msgstr "作者和标题" #: src/GtkBookList.cc:65 msgid "Category" msgstr "分类" #: src/GtkBookList.cc:68 msgid "Read on..." msgstr "阅读日期" #: src/GtkBookList.cc:71 msgid "Rating" msgstr "等级" #: src/Controller.cc:48 #, c-format msgid "Unable to create or access the book folder" msgstr "无法创建图书文件夹或没有访问æƒé™" #: src/Controller.cc:51 #, c-format msgid "" "The folder containing the book documents could not be created.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "包å«å›¾ä¹¦æ–‡æ¡£çš„æ–‡ä»¶å¤¹æ— æ³•被创建。\n" "这通常å‘生在管ç†å‘˜ç»™äºˆæœ¬ç¨‹åºå¯¹æ–‡ä»¶çš„访问æƒé™ä¸è¶³æ—¶ã€‚\n" "è¯·ç¡®ä¿æœ¬ç¨‹åºæ‹¥æœ‰å¯¹\"%s\"的所有æƒé™,ç„¶åŽå†è¯•。抱歉。" #: src/Controller.cc:65 #, c-format msgid "Unable to open the book folder" msgstr "无法打开图书文件夹" #: src/Controller.cc:68 #, c-format msgid "" "The folder containing the book documents could not be opened.\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "包å«å›¾ä¹¦æ–‡æ¡£çš„æ–‡ä»¶å¤¹æ— æ³•被打开。\n" "这通常å‘生在管ç†å‘˜ç»™äºˆæœ¬ç¨‹åºå¯¹æ–‡ä»¶çš„访问æƒé™ä¸è¶³æ—¶ã€‚\n" "è¯·ç¡®ä¿æœ¬ç¨‹åºæ‹¥æœ‰å¯¹\"%s\"的所有æƒé™,ç„¶åŽå†è¯•。抱歉。" #: src/Controller.cc:81 #, c-format msgid "Welcome to %s" msgstr "欢迎使用%s" #: src/Controller.cc:83 #, c-format msgid "Version %s" msgstr "版本 %s" #: src/Controller.cc:85 msgid "To view a book, please select an item from the booklist." msgstr "è¦æŸ¥çœ‹å›¾ä¹¦ï¼Œè¯·åœ¨å›¾ä¹¦åˆ—表中选择一项。" #: src/Controller.cc:220 #, c-format msgid "Unable to create a folder for \"%s\"" msgstr "无法为\"%s\"创建目录" #: src/Controller.cc:224 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new folder at the given location.\n" "\n" "Please make sure that the program has the permissions to write into \"%s\" and try again. Sorry." msgstr "" "造æˆè¿™ä¸€é—®é¢˜çš„å¯èƒ½åŽŸå› æ˜¯æœ¬ç¨‹åºæ²¡æœ‰è¶³å¤Ÿçš„æƒé™åœ¨æ‰€ç»™å®šçš„ä½ç½®åˆ›å»ºç›®å½•。\n" "\n" "è¯·ç¡®ä¿æœ¬ç¨‹åºæœ‰å¯¹äºŽ\"%s\"ä½ç½®çš„写æƒé™ï¼Œç„¶åŽé‡è¯•。抱歉。" #: src/Controller.cc:233 #, c-format msgid "Unable to delete old book information" msgstr "无法删除旧的图书信æ¯" #: src/Controller.cc:236 #, c-format msgid "" "You have changed the author or the title of a book.\n" "Thus, the document holding the old name and author need to be deleted from your harddisk.\n" "However, the deletion of this document failed, probably due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "æ‚¨å·²ç»æ”¹å˜äº†ä¸€æœ¬ä¹¦çš„作者或标题。\n" "因此,ä¿å­˜æ—§åå­—åŠæ—§ä½œè€…的文档需è¦ä»Žç¡¬ç›˜é‡Œè¢«æ¸…除。\n" "但是,对该文档的删除失败了,这å¯èƒ½æ˜¯ç®¡ç†å‘˜ç»™äºˆæœ¬ç¨‹åºçš„æ–‡ä»¶è®¿é—®æƒé™é™åˆ¶å¯¼è‡´çš„。\n" "è¯·ç¡®ä¿æœ¬ç¨‹åºæ‹¥æœ‰å¯¹\"%s\"的全部æƒé™ç„¶åŽå†è¯•。抱歉。" #: src/Controller.cc:248 #, c-format msgid "Unable to save the book \"%s\" by \"%s\"" msgstr "无法ä¿å­˜å›¾ä¹¦\"%s\"(作者:\"%s\")" #: src/Controller.cc:252 #, c-format msgid "" "One possible cause for this problem may be that this program has insufficient rights to create a new file at the given location.\n" "\n" "Please make sure that the program has the permissions to write into all folders below \"%s\" and try again. Sorry." msgstr "" "造æˆè¿™ä¸€é—®é¢˜çš„å¯èƒ½åŽŸå› æ˜¯æœ¬ç¨‹åºæ²¡æœ‰è¶³å¤Ÿçš„æƒé™åœ¨æ‰€ç»™å®šçš„ä½ç½®åˆ›å»ºæ–‡ä»¶ã€‚\n" "\n" "è¯·ç¡®ä¿æœ¬ç¨‹åºæœ‰å¯¹äºŽ\"%s\"ä½ç½®ä¸‹çš„æ‰€æœ‰æ–‡ä»¶å¤¹çš„写æƒé™ï¼Œç„¶åŽé‡è¯•。抱歉。" #: src/Controller.cc:302 #, c-format msgid "Unable to delete the book \"%s\" by \"%s\"" msgstr "无法删除图书\"%s\"(作者:\"%s\")" #: src/Controller.cc:306 #, c-format msgid "" "The document containing the book that you have been trying to remove could not be deleted.\n" "\n" "This usually happens due to a problem with the file access restrictions given to this program by the administrator.\n" "Please make sure that the program has all permissions on \"%s\" and try again. Sorry." msgstr "" "æ‚¨æ‰€è¦æ¸…除的包å«è¿™æœ¬ä¹¦çš„æ–‡æ¡£ï¼Œæ— æ³•被删除。\n" "\n" "这通常å‘生在管ç†å‘˜ç»™äºˆæœ¬ç¨‹åºå¯¹æ–‡ä»¶çš„访问æƒé™ä¸è¶³æ—¶ã€‚\n" "è¯·ç¡®ä¿æœ¬ç¨‹åºæ‹¥æœ‰å¯¹\"%s\"的全部æƒé™ç„¶åŽå†è¯•。抱歉。" #: src/DialogBookDelete.cc:42 #, c-format msgid "Delete the book \"%s\" by \"%s\"?" msgstr "删除图书\"%s\"(作者:\"%s\")" #: src/DialogBookDelete.cc:43 msgid "Deletion of a book will destroy its data and can not be reversed." msgstr "åˆ é™¤ä¸€æœ¬ä¹¦å°†æ¯æŽ‰å®ƒçš„æ‰€æœ‰æ•°æ®å¹¶ä¸”无法æ¢å¤ã€‚" #: src/DialogAbout.cc:45 msgid "Translation of this version by:" msgstr "该版本的翻译:" #: src/DialogAbout.cc:46 msgid "translator_credits" msgstr "YueGuang " #: src/DialogAbout.cc:52 msgid "" "BibShelf was written and published under the terms of the GPL (General Public License V2)\n" "by Samuel Abels\n" "\n" "The application name was chosen by TheWalrus." msgstr "" "BibShelf ç”±Samuel Abels编写,采用GPL v2许å¯è¯å‘布。\n" "这个应用程åºçš„å称是由TheWalrus选择的。" #: src/DialogAbout.cc:57 msgid "Thank You for using BibShelf!" msgstr "感谢您使用BibShelf!" #: src/DialogAbout.cc:60 msgid "Copyright 2004. All rights reserved." msgstr "ç‰ˆæƒæ‰€æœ‰ 2004,ä¿ç•™æ‰€æœ‰æƒåˆ©ã€‚" #: src/DialogBook.cc:43 msgid "Edit Book" msgstr "编辑图书" bibshelf-1.6.0/README0000644000175000017500000000000011105623241011056 00000000000000bibshelf-1.6.0/Makefile.in0000644000175000017500000005565311132460413012273 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ depcomp install-sh missing mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(bibshelfdocdir)" \ "$(DESTDIR)$(desktopdir)" bibshelfdocDATA_INSTALL = $(INSTALL_DATA) desktopDATA_INSTALL = $(INSTALL_DATA) DATA = $(bibshelfdoc_DATA) $(desktop_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d $(distdir) \ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr $(distdir); }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BIBSHELF_CFLAGS = @BIBSHELF_CFLAGS@ BIBSHELF_LIBS = @BIBSHELF_LIBS@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_PIXMAPS_DIR = @PACKAGE_PIXMAPS_DIR@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src po \ pixmaps bibshelfdocdir = ${prefix}/doc/bibshelf bibshelfdoc_DATA = \ README\ COPYING\ AUTHORS\ ChangeLog\ INSTALL\ NEWS desktopdir = ${prefix}/share/applications desktop_in_file = bibshelf.desktop.in desktop_DATA = $(desktop_in_file:.desktop.in=.desktop) EXTRA_DIST = $(bibshelfdoc_DATA) \ bibshelf.desktop.in.in all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ cd $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-bibshelfdocDATA: $(bibshelfdoc_DATA) @$(NORMAL_INSTALL) test -z "$(bibshelfdocdir)" || $(MKDIR_P) "$(DESTDIR)$(bibshelfdocdir)" @list='$(bibshelfdoc_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(bibshelfdocDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(bibshelfdocdir)/$$f'"; \ $(bibshelfdocDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(bibshelfdocdir)/$$f"; \ done uninstall-bibshelfdocDATA: @$(NORMAL_UNINSTALL) @list='$(bibshelfdoc_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(bibshelfdocdir)/$$f'"; \ rm -f "$(DESTDIR)$(bibshelfdocdir)/$$f"; \ done install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)" @list='$(desktop_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(desktopDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(desktopdir)/$$f'"; \ $(desktopDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(desktopdir)/$$f"; \ done uninstall-desktopDATA: @$(NORMAL_UNINSTALL) @list='$(desktop_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(desktopdir)/$$f'"; \ rm -f "$(DESTDIR)$(desktopdir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d $(distdir) || mkdir $(distdir) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bibshelfdocdir)" "$(DESTDIR)$(desktopdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-bibshelfdocDATA install-desktopDATA install-dvi: install-dvi-recursive install-exec-am: install-html: install-html-recursive install-info: install-info-recursive install-man: install-pdf: install-pdf-recursive install-ps: install-ps-recursive installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-bibshelfdocDATA uninstall-desktopDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-hook dist-lzma dist-shar dist-tarZ dist-zip distcheck \ distclean distclean-generic distclean-hdr distclean-tags \ distcleancheck distdir distuninstallcheck dvi dvi-am html \ html-am info info-am install install-am \ install-bibshelfdocDATA install-data install-data-am \ install-desktopDATA install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-bibshelfdocDATA uninstall-desktopDATA @INTLTOOL_DESKTOP_RULE@ %.desktop.in: %.desktop.in.in sed -e 's,[@]PACKAGE_PIXMAPS_DIR[@],@datadir@/bibshelf,g' $< > $@ # Copy all the spec files. Of cource, only one is actually used. dist-hook: for specfile in *.spec; do \ if test -f $$specfile; then \ cp -p $$specfile $(distdir); \ fi \ done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: bibshelf-1.6.0/missing0000755000175000017500000002557711006750040011625 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # 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, 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., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case $1 in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $1 in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: bibshelf-1.6.0/NEWS0000644000175000017500000000000011105623241010675 00000000000000bibshelf-1.6.0/pixmaps/0000777000175000017500000000000011132460423011756 500000000000000bibshelf-1.6.0/pixmaps/stars8.png0000644000175000017500000000314311105623241013624 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔ… ­tEXtCommentCreated with The GIMPïd%nÇIDATxÚíškˆTeÇï;—Ö±)£ÝÚlkÙÚµ¤¶h,VLÉÕ”.æZm_¤Å 2v AjµZ óƒd›ÑÄH„i[Ðv[j?¤x¡‹Õ’™ÑÕ´¤Zœ™s?oæmZ¼Ìä¤Açï™Îù‡ùŸç¼7(P JhpGÀøÏ0ꀦSm‚(ð;0DÆigHàI`>>eÚÔ÷ô4µ¾·YÏŒÓΘ¿téÒdGGGRWŸS¢–øÄˆçgÖ(ï*ÂÆicTÇb±çwìØ‘J†B¡ç€ø?))åjà«/»¥M@†c|±»=¼VáäFéºoóæÍ¡H$B4eÆ à®Û-hFÝ“›ò§ ÁeM ÜÐz~ °¤B‰ŒÒ•hooo¨¯¯G‚ÆÆFš››§å\Hç·8Òê¤d—c½‘Êoœ48£ä2#L¬áp%à¶n=`4`T„Ñÿ—М‰RÊdž‡‡«<Ïò,,˶mÒé4‹-ú xPúÚJ‡s´‹‡Ç}Þ ,DÕ e>ÂaPH¶o{)|ð|(”G,ý/\öªµŸÿÙ¬c{Ø®âðèè×OBÀ(q 0ápxì©—R"„ •Jày¾ï£”Â÷}"‘]]]Õ[¶lYïy¶mãº.®ë’Íf|à]àãU„ß^Mµž{ûwBèLQí…Px&øYð²àfÀ΀=š3 æ(iÈeP™#<óÞndЪo `”Çx¢«««vÉ’%D£QB¡RJ”Rxž‡ëº8ŽƒmÛ‹â QhMÓdûöí î6iÓ.1ãµ¥à‡öiW¹gM™ÒˆÀCà |||<®ÏÇÇ̶-”e°~ðzÎÿ¸®(±€QããÝ»w_^[[;©©©iì©/˜ `„ÂñøïŠÛmÛ¶188ø ðb± Ž×G˜ì}÷õyummsRæÏóP¸:I'›; V&FeŽòÒÐAîíÍ}L;Æ{)`”ΈÝ=== sçΫã aÛö1«ÃÎ;éïïúÆí„ÅIÀ×ï̯™sà „R \œžnœX:A3ƒ2³¼õÑAnîù ˜˜£"Œ(°rõêÕ“gΜ €ïûø¾ëºxž‡ã8cF(6Äž={H¥RßOéŽcY£†|ÿ;[g_A×ÐÉåÀΡÌ, ÿÂìe¿~¯sJœ‚ ¥1$ðÈÊ•+/mmm=æk¢Ø{÷¯o?°öh• T#T…$†ósç_Éy§›`:r(3Ç„÷aÙLre cFé I)7 ˆâÃøþA!–/_Žëº€{²J7=Üy1ÂNƒ•k4NF—¹œaÜÓH”910JW}[[›( ÚbLÑÒÒp~%fÞ½ &?Ô±ÒcefPVÌBäËÞ­× ôð§ŒÒuy"‘øÛðp|bêÔ©è¢áÀ³šjBùq¯òQ¾Çw¿ŽÐ²xŸ#?ÛTÇEU>Â2À2¸ªÆ¸¶ÌäF麺ºº˲Æú‡¢··×—RÊîînâñøXE¨®®F/t}x2FˆH¨«rm”ë°ïà‰Ž9’ñß:€Pý-?n½à\f}¼î .”5U4—‘XÀ(cmHJY/„À²,8Àºuë”aCÀ zzzÇãñ™Äb1b±À¥'»¨±hÙmQuøÍZÕzMXŸÃÁ €Ã÷/D¥S(=0*ϸ$‘H$W­Z•lhhHË€óŽÖVOŸ>=¹bÅŠd%öA¤ô Ô7%nxx@/œ(àŠ€QqÆ< t‘ßšvÂ×ð´>眓1ÂËzá£EõzA&`T–±€ò7¶H`V%^ú¿èOòf­-  ýIEND®B`‚bibshelf-1.6.0/pixmaps/Makefile.am0000644000175000017500000000047211123473704013737 00000000000000 pixmaps_DATA = \ book.png\ calendar.png \ empty.png \ stars0.png \ stars1.png \ stars2.png \ stars3.png \ stars4.png \ stars5.png \ stars6.png \ stars7.png \ stars8.png \ stars9.png \ stars10.png pixmapsdir = \ $(pkgdatadir) EXTRA_DIST = $(pixmaps_DATA) ## File created by the gnome-build tools bibshelf-1.6.0/pixmaps/stars9.png0000644000175000017500000000256511105623241013634 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔ.9Ö‘tEXtCommentCreated with The GIMPïd%nÙIDATxÚíšmˆTUÇ÷΋ëØPá.f­Š´[Hn/ƒ¬&±âKÑ‹’¶iIÑÒ·Å ÛØý°_Ê ’Ð>,Ù&¸ËJj¨ån¶P톱š©(AfThJŠ583wæÞsϽ§sG×Å·qgw…Îg†ážßyà?ÏyÎs.hÓ¦M[)lð¼fÜTŒêÑAøH͸iks4…°¹}ý,Õön>ÔŒ›ƒÑÐÐÐd†Q±D|BÄó3k•÷o«Š„ÀtÍ{FoooG(úˆ;ɤ‘¿üÜb¡ñ˜áG~X>+qpšqŒh4ʆ "À #-„7›^›[9ùÎêü£†Á½ÕÓYP7)íª›øìÊ•ºÌh …¡ðlð-ð,é¼Û)°ÓKA6ƒÊœçƒ=IVod/P,@3Fˆñ;ÚN!BÇÁqœ Ÿ…ضM__==={Íè®X#$V¼Üj÷®àe1< ÃOcx)ð24—_€tÀsÀà ðd^ž‡’.m½iVoä'`Þ À4c„žç]â¾ï_2ö÷÷ÓÓÓóãP\I'€™KVìùë«Ý;Pn d*¿ÏÉt îl¤ t%Êsùøû$Míòðp°GiÆ3\×½° ÃÀÀÝÝ݇MCEp­bñ6àׯw>Y±hÁ\ ¥@IPîEuË,¸Yp,Ø”mñžÓ<Ýœ< ÜØš1:Œ]vº®‹‚Â(„àÀtuuý¼w¡]S…ÖåñÝÛN}bQC (;—‘EÙßþ›…«Îüæ^g{T3JÀø|à©N×u)¸‚£GÒÞÞ~X7dË)Je!“œ{ªñ"Ø+¨Ð‘ <‹²³ŒìŽ`-â«%`lÙ·¬SJÉ`1455!¥läpJO½Þ8C¤ÀI“λ› Ò\6ð†ÈñÒãQ€9E6F4£ŒÁ(Ô ‰D`R):‹K^\\‘?ê8)p2àdPvåX`<Ÿö–Í6Ž?Řf”€Q¨  bÆŒS®5iø:Àó«+Bùs¯òQ¾Çg’$–óÃã›+™Ræc89prÜ_!fœf”€!ÕAZZZˆÇã2Byy9ÁE×Àp„1¡²L ”t9v:Éœ†œÏø_ @hÚÒÛ&Odþþ÷Çq—éPQ@MiFÉVvÍš5Ëãñø¼ÆÆFb±±X àîá^jÔ¯z&ªÎîºCÕ=VÀ¡+(x1pö•%¨T*èŸkÆØ1¦o×ÖÖv´¶¶v”â=ˆ® ùðÛu¾ððjpq¢€û4cÌëàöáá`i‘ÏD¶à²D3ÆžaóK±=hÓ¦íÿbÿG§ÉŽ«|ÇíIEND®B`‚bibshelf-1.6.0/pixmaps/stars5.png0000644000175000017500000000330511105623241013621 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔ+Î$yGtEXtCommentCreated with The GIMPïd%n)IDATxÚíšoleÇ?w×ÖÙ9Üdb± 7t"  Ę¡˜¨èÐhÜ Cœ’èf拽P˜ã"ŠºáŒ Lñ…UãbHÜaˆŒŒÐè@&º¬k{ÿïñE¯£@+pÃ}“_®—¶÷¹ç÷ç¹çÏÁ„&4¡ …n¼@eg™º@')ü þ €ñ* Ÿ%† ¼ìuÆ™ÞØï¾1oJó+å—o¥Æ3FMMM°ø,1ªV¬X1õ`œ¤Š‚|¿íÄ_ö¿Â¯`%ã™±eË–VEQÖcÌ( ƒïoÛ¶­ÕëŒ3颿üô¬,)#û‚ìí©V€/Ƹqç”X»v­xxŒoܸQñûýžgäš«êën ]9­,õWI⺲/œZ,£†s†$I”––R^^>(#F¤ººº$#I’çÒߊk $Ël7õM~Y¨`sˆd|€üpË p#`†{´!¯3¶î¼y½aÄb1–-[vxîµ…kæ ¿ëKÉåä˲¼jÏž=y¶m£ë:º®ãe†ï„óÏ€)ï"å”ù| éîzYrÀ1S&l6A?ln¹õÒ¦×{I"á`6†%è÷6»í9†Çqðûý444¶··7Û¶aX–…eY$ øø¸¸}>ßpEÊrª‡ikkÀ¶mÇñ2ã”=ÂÑÏÛ^~ÿCr È7_’ÐÁÖÀI€+FŒ¡”i1І@A2Žˆòöw<ýÛ…î xŽñýŽÊõ†a`Æq••>jšFww7Ûܤx©¡¡¡xùòåEA–e„ضeY˜¦IúÚf dI„öÍÑ?ªçÝdMºöÚR$l$L$GGGÛ5Ë5[SSK:BWiîø—ºuÎÀ‚ŒyŽqðP¨7]1¦ižtìêꢣ£c°>ÓyÀΞžžë‹‹‹/+++®Èt€2¯“iddM„AàÃM›}dþ\{RéÌéH¡§ç¸pT°’©Ïf†éÂTù¸óožxSß Ì,/3öÿ1½7›CMÓ¤§§‡h4ºxÿDç¹ã”¶nÝ:{Ú´i“g̘ã8'%[`<ÆÈšжáóƒ-˜/çÏ _dëÇ*ÉRÁÒŽU«áÈP†Æ×»úyð¹¡CÀ·!žfüÜW’5vïÞ͆ ~s´œS0l`GWW×Üp8\ …F¬V¯2”F©ÐüIûšÊ›¥KKgLI9ÑÒRÏ×t€Ìäp„¡Ò¹·Ÿ%OýÝ]÷6N3kñc_ß5½™Î3M“}ûöÑÒÒrxm„eª»³³sv(šrª@y™!bŠ™§È¨æŸµHÂiÛ&Xî€Ëp«ÕH"´$ß±Ý Hæ0=¯ŒM;î]Ÿv\Úêëë±,«6Ë#g$)²,¿F¥ÌÑü‰ÕêEÆh”îz¦öj$#z ô¡”™qÐ`$]S‘ •G«‘FÎ+#ÓqigVTTLÍ‘®ªª’2Gêé£×£I„»YZ”š²é1Ðã ÇZ¡'@K[ô$÷Ηp§q¹è¼2ÒS®LGΚ5 `zŽŒë#‘ÈqS·Í«ŒÑ$¢²"exþ.´¿þ‹É·nwŠnßE_ÿBK‚š5ÉMEî(>WF]]GŽ9Α………œÁFלÂÂÂá išF__+W®ô<Ãwšïý2„ò,a™ìÿk€HMƒqç PÂ÷ô}våå,Ú¹æ"®’uŠò(Ï¡a`$’«W¯~   à¶ÚÚZ‚Á Á`àš\ömdYK’„®ë>|˜5kÖUU·Q@'Œ¬Zöä}ÑÿU±X8×'€ÞSTâR å݈Xb#y¯2ÂÀ •••­­À;90fF"‘Ö¦¦¦Ö’’’VàIàŠqÈȪ6wñá ©WºN§§Ü Ü0Žs€7€V`ò(KÜß7zml¼2²êSwã#€fwÓg<3d`QÝêÒ3xÞ{‘1¡ Mè¯ÿyg2ûŠÚIEND®B`‚bibshelf-1.6.0/pixmaps/stars4.png0000644000175000017500000000321511105623241013620 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔ54+D$tEXtCommentCreated with The GIMPïd%nñIDATxÚíšmŒTÕÇçÜ™qu|Á]YqpXºkeÛÙ˜hBƒ1fUH¬”ESÓýÐnmR¥|¨‚ZLª‰´jY]£‚+øÁ©ÚMÇ}!l¬¦HMK´o––tKÝ0o÷Þs_Žæî:®ìtfþÉ“{îÜùÝó<ç9÷¼\¨«®ºê:º¸§ q ½Î87E€ÿ“@økÌÀ/€ÇƒrÍ2ÎõÁ~óë'—ÎÙ±­óràé/©r•`t¯_¿~nooo3pKQžºbaÏÏ>®½O6ë° ´~ MÑhôùôïß¿¿ß0ŒgX­2Î¥GHýåO›¤0.F†¢ï1€7Îså*ÁøÑž={Œp8L$açÎaàûµÊ(·!<¼áÁ›âWÏk/Ü*ßloå–s»€uç©b•`${zzZ‰B„´µµÑÙÙ¹h«E†8Ão1À,Ä¥ä c¿–Ú/Nœ ùì$‰]§€o ‚£d.0#ÔSœF)åÇnð<Û¶±m¥étš5kÖœtðß:0§š3ÂëÀZ@4\R,dtä!w¶ƒ—7nœ ¨4o¼óg¶>ñàËù8ÊC¹š‰I`_Ñ•`ÜÜÈP(4-RJ„ ÐÑÑRjÚ¦966Æàà žç¡”Âu]\×%—ËøÀï€7«ˆqÚáäÞW~ïÞ{Á¸d¡mð,ðsàå ARYP™‚Yi°2`¦!ŸEgOñÌï'yà9+‚¨ã±7¶¬[·ŽH$‚aH)ÑZãy®ëâ8ÎçœXìÈ©²R ˲ehhè ðRÐ誉Q¢! îKý³gé î¥×]׆ÀCà | | |¼ÀÜÀ<«p®l´m²cè|Öÿ#psQ€*Åxo||üú–––ËÛÛÛÑZãûþ´ó¦8Užy­ø822ÂÐÐÐûÀ ÅΫ"FɆp xñµ}½oùïÒ¶…óZ¶ Áðƒ@ø&¸ùBÙ)2ÛB;&/ÿ?e–î`(àݱ±±Žyóæ]±`Á|ßÿ‚ÃJ9­øúøø8©Tê0ðüLçU£dC°€Ý{?úáÍËeãÂÄUÏþ,[]\ë³lUA€”‰Vo½?Á=?Ïü XTäB1<à###K‰D,Ÿ1“fž:tˆÝ»wÿ-XÐò«™aœa”j;^ü°wÙâ²¶s r­Â;|*@N~:HZ™ ™àöNþ#X÷Vg™µT‚á£ÃÃÃñx|ÎéœXì<Çq8zô(»víúøåT5 1‹)fƒ!1÷!´¾žn0¨SA¶ª<ÚÊsñmǰ@¾Œil%†”ò¹T*%<ÏûBë8δmذ×uûJ¼rª’1›¥;Öw-B¥ÁNƒ)˜“;*˜‰P&?èŽ$Ë\©#ÑÝÝ-ŠGÑSÇbÇM9³«« `n­0fÓVß·ª¹0e³Ó`gÁ΢­,ÚÎ5ey°ó|w¹ ˜Æ•£J0®O&“Ÿ›VÍ´bG.Z´`~­0B³¯lo6 ówí£}¿ÿw’®µÇüPyè¥8ó|„m‚mrC³"Å—£J0755aÛöôìĉlÛ¶Í—RÊM›6‹Å¦3©©©‰`£ëÝZ`œ­!„%Ä\…vŽýg’dïÇœÊúo½€‘¸ëãׯ¾’•ïm¿ˆk¤MseT¬ )¥L!°m›ãdz}ûvmšæ~ ˆ-[¶¬Åbßéëë#F¾QƒŒ’ZsÿÝ=ñÛ½bIHœ&W?YN g1’¯4ca2™ìߺukkkk?p?pU©÷/ðȲeËú7oÞÜüª%5,>|Dá³±³é§Á¾õbÜô)|ÒuÖîx2¸çŠc”Ô«ÁÆG9Š;‚¥¯ cÕ9|Ø"•et«Õ¨«®ºj^Ÿ—ô€ÂnÍÁIEND®B`‚bibshelf-1.6.0/pixmaps/Makefile.in0000644000175000017500000002564511132460413013752 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = pixmaps DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(pixmapsdir)" pixmapsDATA_INSTALL = $(INSTALL_DATA) DATA = $(pixmaps_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BIBSHELF_CFLAGS = @BIBSHELF_CFLAGS@ BIBSHELF_LIBS = @BIBSHELF_LIBS@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_PIXMAPS_DIR = @PACKAGE_PIXMAPS_DIR@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ pixmaps_DATA = \ book.png\ calendar.png \ empty.png \ stars0.png \ stars1.png \ stars2.png \ stars3.png \ stars4.png \ stars5.png \ stars6.png \ stars7.png \ stars8.png \ stars9.png \ stars10.png pixmapsdir = \ $(pkgdatadir) EXTRA_DIST = $(pixmaps_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu pixmaps/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu pixmaps/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-pixmapsDATA: $(pixmaps_DATA) @$(NORMAL_INSTALL) test -z "$(pixmapsdir)" || $(MKDIR_P) "$(DESTDIR)$(pixmapsdir)" @list='$(pixmaps_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(pixmapsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pixmapsdir)/$$f'"; \ $(pixmapsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pixmapsdir)/$$f"; \ done uninstall-pixmapsDATA: @$(NORMAL_UNINSTALL) @list='$(pixmaps_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(pixmapsdir)/$$f'"; \ rm -f "$(DESTDIR)$(pixmapsdir)/$$f"; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(pixmapsdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-pixmapsDATA install-dvi: install-dvi-am install-exec-am: install-html: install-html-am install-info: install-info-am install-man: install-pdf: install-pdf-am install-ps: install-ps-am installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-pixmapsDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-pixmapsDATA install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-pixmapsDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: bibshelf-1.6.0/pixmaps/stars6.png0000644000175000017500000000320611105623241013622 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔžìÞtEXtCommentCreated with The GIMPïd%nêIDATxÚíšmŒTÕÇçÜ™qu¬Ö]YpqXÜE°®† ‰˜5iÖ -ehÜ q‹‰•f‰!Á ­âÁHD|[»¦)â‡N[Ý4|`°¡a#iR¢m}AQjÝ0;3÷žûvúaîÀ° Ë.ÁeæŸ<9÷ÞÉß=çyžsÏË…Š*ª¨¢K¡Àò cTªšÊ€qŽ"Àÿ€A \aŒ( < <—$ãbìÕm›fýpËÆæë€ç¿£Ê• £måÊ•:::j{¿ÇŒsÔ«{~úí}»V‡ \ ¡Â(ªšh4úʺ÷ìÙÓmÆK@¬Ó#$ÿù5RW#CQ>ìo7€·/qåÊ…ñðŽ;Œp8L$aëÖ­aàRdŒ5ž\ýØ]õ'5ån‚[›¸·uB °ìU¬\‰ööö†x<Ž!477ÏK!Fø-E€z)9è¨7ÃR›à “gˆlzêøk§€Û°ƒÒ†®F8hKpª¥”O Tyž‡R ¥¶m“J¥X²dÉ7Àïü·̹\ŒÐ°ó]ÀR@T]Ræ,d_ßoÂßÉ™ö@{Dðûµ»°áÙ#ŸƒC&ããØ¶«99Áì²­\‹Ÿ2 ÎH)%Bzzzð<ß÷ÑZãû>áp˜®®®š;wnñ<Û¶q]×uÉd2>ð.ð§qbœ·Gøæ­žÖ~¾b×€Œñ¢ZgŸ/nì4ØC9³R` ™‚l>Å äW/sh  œOuuuÕ-[¶ŒH$‚aH)ÑZãy®ëâ8¶mŸe…Ù›/-Ëbß¾}ôööÞ‚n¼Eaçîä§í³îp¯6­‡ÀAøøø&x¹y&8&8VîÜVhe²¥÷[{Éÿ˜[ÐxåÄx¯¿¿z]]ÝuMMM§32ï ¼“òÇï–}}}ôöö¾¼^è qb „SÀïßÜý¯çÌô®mœ:¡mÐ*×P~ÐH¾ n6w옲ЎÉöþ—_>§>æn™2làÐþýûo›4iÒõS¦LÁ÷ýsœRÌ1…×ûûûI&“À+Ã4NŒ¢`=ÛßúøsçÈê©ñž:“I® ®u&“ì ñlm[üåý“,bèsàΠ"åÌð€¿÷õõÍŒÇã±úúú³uøùáÇپ}û¿ƒ-ÿr1Ä(–`?zg×ü›ï[ЂÐù– ® ²( * vmeØ;ðóW}ý 0í£àrcHàñuëÖÝÒÚÚzÞ.Ú÷øÏ׃´,=æ‡BÈÃoÔ3¹ÊG(”ɵ6Á{,*Æ555(¥N¿¿Oœ8ÁÆ})¥\³f ±Xìt¶ÖÔÔltºÜŒ BXB}•k£]‡c_’èøŒSiÿ¯@`Ķkâ Ì{oóUÜ$µU4¡båÂRʸ¥ÇgóæÍÚ4Í=@ëׯ_‹Åîéìì$Fn)1FQ-Yõ³ˆ>ùç:Ý:3¤#çÉ’…ÀÉG¡S=è¦Zå̘šH$º7lØÐÝÐÐÐ ¬n,öŽ~;{öìîµk×v/–£¨z‚ŇÉ}Òu!=lÎhàGWã> è"÷ÙØ»x`SpÏõ%Ä(ª?cQØlú\IŒ…ña‹æ¡ëFEUtÅëÿ1˜‹,ðnIEND®B`‚bibshelf-1.6.0/pixmaps/stars0.png0000644000175000017500000000173411105623241013620 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔ(eJtEXtCommentCreated with The GIMPïd%n@IDATxÚíÚOh+EÀñïLš ûø$` ‘¤ØÀk ˆEiooQ<ÅöàM(Vzi¡xµàó"<´ T©—–M†â¡i¨‹>¡´Ò›ð¥—‚§JÉþ™Éz0 i^Ú&}µYu~0ìfÃæ3?fg0a„‰Ûˆ5ÆÃÏpßGÀÏðÆ‘¹!üÖôôôù|þÞááá9ðäœ1îÐ7@–e}¶½½q‡B¡àk­?þ¼Å㎛L#nllD¢Ñ(±XŒååå(ðþ-g¸1îØè5Æ'''‡Òé4B„ “Ïç_†oi`ÆèƒqÕ£!Zÿ^Ô×÷¤”Ÿ<§µÆu]\×Åó<ÎÎΘ˜˜øø]?€oŒðí‰ð.ð6 šY&¥DÁÚÚ¹\Ïóš­ÑJ¥Âææ&Zk<ÏC)…RŠóós€ðð½1Bg\:#£ãëãcÛ¶ ¾Íf ‚€Z­ÖDpã¼ýZë±\.S*•~¾mE:£c"xÀÏ•J%—L&ïg2jµÚSP'¬õºmÛ‹ÅàëvÔ¡3.-(ià—r¹üZ:ާR©+3°ýóþþ>ëëëO€/ëÏ#c„ܸª²¨Ý\*•zñ2¼õ}Ÿ££#VWW>¿b`Æ™ÑMe1"¥üªX, ­õSS“ïûÍ6??RjP½”ºÑ_£›‚RºP(ˆÖÕgãØ 6:1:: ðR…côÙè&Œ_xio­x¹ÇÁ£ÏF7‰ðj"‘hÂŽãp||ÌììlmnnŽÓÓÓ H$C=Î}6®K)eZ뺜œœ°´´T«Õ" ß‹Çãgff°, ˲^éåÿcô߸n?ÂÐØØØÃd2ÉÊÊ [[[ûJ©eàq}«€ß<Ï;´m;[­Vã™L†½½½çë%ÌnÂá2:ox¾ø{+ÔµÓðEýžûÆøWã<Ã$ðfSž1Âe˜0aâwÕ´ö6UdIEND®B`‚bibshelf-1.6.0/pixmaps/book.png0000644000175000017500000000703211105623241013333 00000000000000‰PNG  IHDR00Wù‡bKGDÿ--Fmõ5 pHYs  ÒÝ~ütIMEÓ2$²/ü §IDATxœí™il\×uÇ÷móf_9¤H‰"µy‘•D‹-YJd7®ý¡-’ÂhԀѠHapÓ¤iŒ)` M¿´ i‹$@ЏE’¦h-'–g±dÉ–l™ŽÕJ^µP)®3œá¬o¹·Þ{"­P”l  ôofø–ó¿ÿsþçÜûàÿí×k⼯ú ô^®W+€8PêÎKÀ7 ÌRÄGmG³€À-À*`;P:À|xü0µè»¹a39«]1b@"t0~O9`%Á ¯(”úîG M×uçžû>‘1c6±dÎìZ‹ÙÙïýà_ßz}äÇÀàYàкŒÜ‘ã™Ð±t8ò€nÙÉ5[ïº÷ŽêìD¡>œH¤lC7Ø|çÝåRq†aQ,õ‚ó­.õ6§NN2_ŸÃñÒ÷‘õúDýô‰½¯+¿y øO`” ¼ÚÜ (kvî~àþb±|±Ð3xöühO.ÍdKEJ½+IXqâÙ^jÍ.Õ™ó:¾ôét¾ï#¥Äó\\ ø.ž|·ã‚ëàj ß÷=yp´>qüðð*0Î ²!€Uà·ýôÃ?VokG˜qÆF'™ƒ` fÓ—>ºT~à¸çã*–¡œ.žžã®€˜«OÔÏßû²ó°ïFÙÐÒÐêáÏ=úègWõ•{IdmšŽ$›O‘”.®ãjH!Àõ¦†ò@„i¬)…Z0BC(‰¦y „P iH_ ë¥1++ nè4æœve¨…Ž»!ѸnÅÕC>¿m×}ii( é4=%›±ÙV&EB3©4ºhÒdI©«ƒ0@èHD(UK€J‘*­ÉZ±ÂÀ|ul-x& ê…ÒuÑâ‡>|çg7mý¨uéBÍÐÈ¥”2).ÍÎc%-RÉÍF)åÕAX …†B”âW@¸žz'P]EÌNÅr=:ÍúZ×™+ÓÁU8‹œ_„7ÜzÇ#ÛvÜc Mâv;øŸ\&Ao9K}¾MB—¤lƒJ½Cèׄþ臗Ax¾†¯ „”HDðçzM¡¤ŽfhdJCaØC­Úøm æÂ»Eù¾%è@ñ–[7=²mÇnËR i˜t»bát;+Ýnw'ÊŒ4„@výˆ8ßnÖú¿pÀÚ|ç®r¾”CI=P )ž¤å{Œ7è+¥è+¥ð»>­f—|!ýn×P&¸¾‰ @v»AÒKMÓéìeýêAû¸{÷.V¬Ú˜zûÄ+ÛÁwÓ@ èê‹’ÂÎwÚòᘷoÜYÎõƒ3¾o`Ä|„Œ¯PîMS,ÄÐ ‹V·K*›f¾ÙAâ/©Lðý@™ºTر8†W0<ÜÇð†VIelΜ'¿ÿ­æ›¯ýô"xSÀËÀ 0´"Ñb£ œë´©£/ŒßvǶÞB¶Í—–@“º R¦&çÉäãòI’VŒZ»I.DÓ Õî |‰ï \Oáº~Ð+¹ Í^_9φ5e†ûK –IeÌ5§8p`_ë'ÿñÍso¿1rzÛ¦áÖgþè!wß¾½£À±pÌU ¹xA£ôøY` ðP¾Ø¿ë‹õÕM[Z ”†’×qñtú¼d°/M.§#GFN01>Ë©ÓÌ6Z$(Ó$2(e˜VŠXL :S•I޽üoü÷Ë$Sëׯw>¶sóü–Í*Z–…eY<þøã•W_}õðïÕz*d¡n,1þ~¯:;Þþû¯|^ûó/ýÝÆÍÛ·B,]ÃŒ›x¾F2ás©ZgºÑbýÊ"»ïf¦Ò¡§ qúì4Åb‚˜a“/ÄÐÑéÐfäÐaþçø+TfF)æòÜ}÷V~ïwþ„t:M,³t]/˜¦‰mÛH)pht®³¡´º:ï6‰ÀLvÚ {ÿÏžìö¬/¯^5lêI…Ð4 M 4‰ô]_1:>M¹‡„!¨V:¬,ÑS*Jœ¿ø&?ÿÅ3ìÛóo=ø4x3||÷fvîØÊŽí›Y9ЇmÛ˜¦I<Dz, à “ÉL&9tèPóܹsu‚5ÄtÿÝH…®´+AŒÉߥhCïªÁ5¦.©ó•ŽP]Ü:[!™ÔÐ n»Ëþò1žþáw˜ºpœRÖà–õ«Ø¸ñÖ­[C*•¶mâñ8¶m‹Å°,‹t:M6›%›Í’L&Éd2”ËåÄž={TÑ"ÈäRƒðÂω#‡ž5sÅòÚ·›R ,Ma „‡ËäTƒdÚâÔ;oѪ¼ÃðP?år‰xœt:M*•"•Jaš&±X Û¶Éf³äóyr¹ù|žR©t™ Ó4Ù°a—&&Ô‰'nFÂîÞÕD $Aås€ €6òÒsñ\v¨¼fõZS3À …EKWà Åó‡_¤U›¸|³d2I<§l ¶´&¸gâ¹ê%fóý”VÒ××w™]×/³S(¨ÎµivRÆÑ—žïv;ýÀ+!ÇXÂñÅæ‡±ÕŠ}€ø§¯?&íúÎßÿƒOÙ†RhR€i`ÅÁît©5æ:ÿÀúã&w1ǦÊ)úÛÕ T ^½ÆðÛûyÕPtr92™Ìe§Óé4##Çù—|›£#'‰Ù©X¦o×úZíé× vGb€v-„,8,4T{õÄ7¿¢ Míxðw?ek¬˜À&‰ŒO£ç™1ÒÉår™n>éÒ_ŸG˜1Ðu´T-£”-òÎ4#“ã¬[·Ž‰‰Y¾ößàÅ£¯Ñlt±Ì$v*EeêÔÄÌÅ#“À)É× èê¯Ç®±à»ÿü·~mfbÛ§ÿøO³NWÇJ€ï›¤6Mé³2›Å¶mZù<¯g³ŒoùM6Ö.²¾rR9D2†‰e˜lºø&_þ³§Ùóü1̸¥Ù +*Ç/H¯1ì'ØS'ŒÂfîzmqÅv€  ñÖ¯ÅÇ.N¦·î¼7¥)Ã2¦ÉÁŸÿ”µC½Ø¶eY$“IÌx‚vßí-÷PD¢<éùt+³ÈÊ Éê%žÄmÏÖ;­K§»Í‰ï+éœÆdt†`3 {½ ,Å„ gÅ?´ÿÉŽ#{ûÒ_4Ó_CèÆeç«Ëôô4_ÿÇosläörN}§2K³:GmzÎ÷™—€g¤r>t¶~®‡Çy‰—ïÀÕ@˜/?¿—¯jÉÝŸûÂ_”„iãµ[‹Å˺¾oß3üד?¢Ó¢pE!OõØ/©×ëÌv\¦:._›jî~FPmk•7:6C§»,¬ Þ€„‚{žÝÃû¨ºúè#>Vj5Ú¼ýÎ;<àgΜ¼òúéÏXŽùÖʼnÜÇgÌ‘<×è¾8ꪓ:_]äx'œ´hYyyóë½äÀ•¶8'<‚Ë;wæ ýÒØTÙ²‹‰§ôÕj%:¿N  ßýdÚrû5±éxÛãTÇ祖óË“ß"XuE1>^U]%¶æß/‹A¸áC9ô”©ëöáÿÎ?!˜Ñö­–v[~ëhË¥áë‚ÓO´ µð^5‚¸vì®j7 `)ûYßïì%hÏ% Ùì|ùt×ÇWФ*’ Ug!,\,³¹u#!t¥-§Z8*!Ê &¾hì߯RŠÕJ°Y©ž—ö¢ÅºÃÂÆÖ²[Œ7@ Þ&˜õ¹Hh••J¶­U°R*òRQ€Áû`{ .¼ªHi¼k¸!´ØTøÐH9´E¿ @Ì(¾1ä«O¤¡ß‡©GáC? ª¶øºeM»Ö ïâVÜ!˜É. !ៅ‹óð70 ¿ÏsXPoÑý®j7;„–3=ï ŒÞΉãAKâ¨Nƒ€¹H"é\ö¦”Eo;cáH6`²°7Õaá•S‡ëxít³s`9‹b; /ÂÏ‘d.»%‹ÖRöA2 ,,¼Î&q±l.~Á±¬}Ð`A84r0’ʨ׹nûuˆìJ¼)oîÿÏÙÿÊÛzIªçlUIEND®B`‚bibshelf-1.6.0/pixmaps/stars7.png0000644000175000017500000000330011105623241013616 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔòtˆtEXtCommentCreated with The GIMPïd%n$IDATxÚíšklUÇs÷aYÜøjµÚT@%ZÁÕ˜Ô˜Ê#Q+E¢±úØ`¢Ö”¢E´)‰D¬(%5Æð°šÐ T-Q)ÁTÚHL$5FŒÊÅ‹OcÆ)*O('þ’V/Ó(Í3†ftuuµø|¾7€ð(3 C¡Ð›»wïn #—ŒÐþãK…ᛄð‡øþ‹jðþ(nÜ1‚Á k×® Ž2ã±7úÀˆ^ÂsuOÝR|ÑÅ32?5 ®œQÊíSÊ…£4°qÉ0 ƒéÓ§SVVv#0}”‘êêêÒ’’ ÃÃâ³0às- ÁÛÜ:*vìÉx“KÖ®`¹GÄòŒÝ_]¿Á²,¢Ñ(UUU+íþ·vÍ‚pýe¸œÉBˆçz{{ ”R˜¦‰išäÊðx½XgóûA#Øõù³ÃÇΘV ¡´­¿õœ«¾;6‰„ƒm),©9Úî ´¹Ñ6!ZkÇ!P___¸yóæ5J),ËBJ‰”’D"à;€­À=À@øýþQ/D&ô¶¶ ”Âqœ\§Í½×ZqÁý‹ïlAw½h m‚Jƒ“•+V,cé(¤cŠB2ŽŽçµûxr{€ ÷&$ãÓ/gm°, ˲NŠÞì1N³k×.:;;÷o»‹à…úúú© .$ âóùB µF)…”Û¶ÉþwŽŒAk„òêG»oïØ *‰¡N CEAÅÝ¥2ƒ”&( ”Jf"@)´´YÓãÉu|ÜÖoò&$C)u’9ŽsÒ±»»›ÎÎί:x¹©©é׎ŽlÛ>ÅéÙ÷¤”#a º×̯þøÐGÛ·¢í(ÈhæZ*cn%Ýö›HéN¢-ÑÊæÝ}Ô5Ëï›ÝkÔ„fdÕßaYõôô°cÇŽ^`ý@qà••+Wþ²mÛ6ÒéôIÑž] ÙÌ#ã´]Ã?@ÙœªÎ?wîü-£™‚Jº”q°“ S Ó`»“h›hiñá7Çx¤1y¸iˆhB1²¹½½½´µµý ¼1 Ûô—¬jhhø­««kÈÅ+ÃÆíÑýÛ·ÜqÙÝw–cèlñc¹Ñ“ÊL¤™+‰N'ø¬÷wîXòǯÀg¨‚'マ¹²i<›Þ÷îÝKssó~`Õ‹``à>³|ùòi'ŠÃl­Í ¹0ŒaÀ |‚”}¸ö¿Á)Û½®¦ÁJ¹–D§“Lºk¦Åd é¡÷ŒM_Þ»a £êêêRÖÒÃ'„X×ÞÞnôïúgƒ\ù¡4÷éÚË0¬(˜Q0c³ã`&ÀJº–°R<\ˆx¼12îý“uXyy9ÀŒ’ÊÊJ£7=Ž„1œ…0ÿ¡yE™vÊŒ‚3ŽNÇÑfÒYˤÖ{o2p[,/÷ŒU¾mÛÌœ9àRŒ«"‘È)5Â`„†àÙ3Š|™ÞZ;hGñË}”/Øçøýˆoß.æÒÃL™âÚ" ·¸ò¢qÏú[–.]J8>­………¸]=×bšæ‰áÈ‘#466:B‘+ãL !  ¸@Zhi³ï·>"58w¶5€¯äž[.º€Ù_­>‹K„IQe6A‰dCCÂp8|[mm-¡PˆP(0ÍËÞ¢Ä0 LÓäСC¬^½Z§R©. 0F1¨ª–ÜÔG;¦êŠüøî4Q28úø|t´í¶;yÆàŒàùY³fµ,[¶¬xÝãòH$Ò²bÅŠ–ÒÒÒ` pá(3U«{óá'2[IO¸›3¸:Ï:ÅM@ pÞ0w»ß¯'óhÚX0Õ»îÆ‡5î†Lžqæb}¶‡Ô=ïÏxeä•W^^ÿÔ.p[…=VIEND®B`‚bibshelf-1.6.0/pixmaps/empty.png0000644000175000017500000000025111105623241013533 00000000000000‰PNG  IHDRĉbKGDÿÿÿ ½§“ pHYs  šœtIMEÔ.‹,tEXtCommentCreated with The GIMPïd%n IDATxÚc````z¨WPIEND®B`‚bibshelf-1.6.0/pixmaps/stars10.png0000644000175000017500000000201011105623241013665 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔfÓtEXtCommentCreated with The GIMPïd%nlIDATxÚíÚ_ˆTeÇñï{æ««(ÉPÆfy±u‘E‚!±‘.µ–Ò_-!ÂîÄ +ꢛ¢»¨›% Á‹]– Ì„T Jè˜tQŠ¥›¢K58sþŸóž§‹ónE;k3±43ìûƒ‡aŸsàáå}Ÿ3`ccc3ž°Æ¼2f¤ üÔ€’5æ…Ñ4ãï¼¹VF÷Ü&ÀÛ֘ƌT—ô—tæ¾.ú÷—¥T VY£· ç?À‡~üþ%Gâqú«màƒ9~8küÏF»ðêóÏ­Xqý`~©RÜ2¸Š C×VÇçèÁ¬ÑC]å·%@ÁTpŽ'Ñ{%GÐ Hê4ðÝý74›O 4¬ÑýFñß÷[Õ·'¯b‡/>Ge%y‰Ñ,*Á}w-}í““àyI¬‰Saª€L—Z£»ŒYW„_ßZþØöíPX NÙô‹ $Bæö u!v!näÖ!l@PßEÜ+¼õqÝ{9 ™5ºÒhºG¨n{úË GÚGi•5PºÚ5hß@Ž ‹AÇ Ó¼3µFÒ„Ñc vïåàî¿£Öè:cÖ=Â2à»n¹å8ùj’% ¤!d$^^±‘›Wà"aƒ‰cÙ±Ç? ¬kt·qµÍâ2àì'‡î¯ oXI l:/õ!ñ!2xè"¡Ç‘¯/òà‹µIàf ´F÷ª…Ñå¹£û7®Ü4\EÉôÆ$Îñ40°±„ŸºÄÆ]—6hÒâxÔ6T x_Á!H.ìü ÖÓ]B˜ò‘Ðgá½gˆbú¿c¬5:l´2Pzà…+Qq¢:D¼×,A¾©<5R¸³ÍÁˆ5:l´Ò[žÜ\É!QýÏMˆ„.yNW¾$=¼NaŽ&íÄ6Š-À÷ V ù™T2$Óœ¿\£ºõLV,â|;>À }* ¸½¬kóá¬Ñ]ÆŒ”ÐÙ‰;$;±F~8x“,]ìp¸¨Ÿ®XŽLŽ/l‰&àkô¬Ñ4îz¤,S‡¯“¡5ENÎÒ]›©g¶ õ1Ä̶­Ñ›FÓŒ™¹ôOä…ú·ï vØa‡óÏ‘236£2 qŽÿs'€×ÿÅ;Š©mͨ Ã1Gp÷Gžð-}îòÈÈH¸VqÏïÞ½ûñh4Zm3ÊϘ‹{ê½Õ®×b±fÚÚÚp8Í€wž…ù<ÏK;wî´bÌÅñŸÜ' ޏÝnººº\À«ó,îÍcÇŽ9\.—ͨ£T#ìïh2°ÔDA F€ð< kjii© ƒ‚`3*ÄfyæµækrEΩòq—hf@Ÿ`ðÂÚnEQH¥R477ßÞL@·®& ÎÂpY5§ZÅýÃÃÃUº®#Ë2²,c3ÊϘi„Àv@¨ºD1›N'˜ˆ $ÞaM4ú$h \lèÎ088H__º®£( š¦¡iétÀ¾¾¶›ÑétN9Y³#LOOuuu(Š2•6£¬Œ»Ž·Nö<óÐ+;v€ã~Ý€0Lt Œ4èi¾;¿¾{f¹{EQ$‰úûûÏŸ[Žx¯³³³¦µµ·ÛÃá@ELÓD×u4MCUÕimFY—}§â×[Ó®\F@G@E0$0$02 góêoK9§©ªzÇ5‘HÐßßè·’É䪚šš#‘¦ibÆ”°ü÷ä§Í(£ nŸ?õK[ã:}axù2SSÎÀ@Ë€‘áòõe— ¢ª*Éd’x<> |2 (À÷ƒƒƒu~¿Q(Â0Œ;Äd3ʸkCIzzO^}ã©F±zyða]þgDÐ2 Iü4V[ÐCCCôöö^>´¾G…BÎ'‰uÁ`Ðfu¹Í(/c¶Î¢þ¢ïÊ®õk…¡ÅY3hRvž e[q)ªª*£££=zô ðþ,Âòœ9s¦.,¾›@›Q~†PijÊ!’Q!˜*è*h2ÇÏoëÎsÙÑѦi1@+¥Õ-ŠâÇñx\ÐuýŽáÏf”—QLCé…·b"()S OdSœÌQ__ðH‰‘à¦M›„ünîj3*Ã(Æ/¶mYÒ„e„I'1¥É©¥J~«W¯XV¢¸UMMMÓ–<3Óf”—QŒ6F–8@J4)¥¸6~ƒEOŸ3ÚÛÛ¹yóæ´|>@m‰âÖø|¾)q’$166ÆÞ½{mF…Î{>ΡC‡ÌL&ó-›Q~ƽÎ#lÛó²»uýJÍû~åíà ˊ¹øÈXEI&“‘L&ã …Bœ={vÕÂ,&j7øý~Ž9ÂéÓ§‡4Më.X3e›QYFÁ豚WÉM»ç°>{¨Âú}'ÙãV6ã¿eŒ/­R·¶7–0äm™ÃwÒf”a‡vüïão:ÆcUþ6°IEND®B`‚bibshelf-1.6.0/pixmaps/stars2.png0000644000175000017500000000322111105623241013613 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔ¾ ƒ©tEXtCommentCreated with The GIMPïd%nõIDATxÚíšileÆóîaÝZl9êâí"T ÚÒ¨ÁpÄTE£¢E#±FC,!ÑbÐo Þ‰ˆ‘H¼PKD°ˆÜx4Ä=‘ Á(E+”jÓ½fæË;­K­´[v?9OòÏ̳¿yvŸügÞ÷]ðäÉ“§|hpOa ê1 Ï<.ìÞ2&€5Àƒçpž£ÀAxûõ—LÙòBõ$àÕ™«_½zõ´ÆÆÆ2`‰Ç(,C™À15%ѧžŽŒSTö¢eXDy4V …žß»w¯OÓ4êëë ˲ž£0Œ‰t„Ø÷ß>.ßùˆÃÝ >àã<'üá]»vùÁ`­[·€ûñ91þ³#ôÔ²èâ»î½|€~ÀAqt°4°S`¥2AI‰LiqРÆ!ÄIòÚÞ}“}À"÷ž[¿~ýô•+W ñù|!p˲0MÃ0Î0˜mrh_J‰¦itvvÒÖÖ¶Øî†ÎcäÆÀ7JZ÷Ä~nX0ϼpöìJ, [[[Ë-Ó-KCCË<–:Ž®²¥í/šß°¿®Ë À×ÝÝÝs¦OŸ>)â8¶m27´?ò¹ìmGGmmm€w³yŒœ£axïÃ=?¬Zxuaåe3Q ŽžùÁm÷ǶU0Ó™}#«t ÇPy¿ý4k^Ñ sC_uuuU•——O®¨¨À¶í™ÍPöóÝÝÝÄb±à­‘Æîy2ñ 0ß52š,`GGÇ5‘H¤$Ÿ5å#!Ä›±XL°,ë_íÏ0ŒáZ·n¦i6rÉñdŒgBé–Çš.E‘qÐã '2e$AOL»¥¢H•ûëƒu9NŒDêëë•ì;Ü¡m¶©!£555ÓK„NYÕ¹¬w!"Š¢ ë:'OždóæÍŽªª_1@Ù¸qãÝ%%%7455 ……B—{Œü1Æ ÂmMwEÿé?¸kC?]‡Ì  ØŸõž%¿ÿÉò™èï­½•²ï`jæ*jkký}}}lß¾'NtW3û²Þ³#‘HtmÚ´é¡ÚÚÚò¥K—ÌðaŒªwòá8™¿¦¥GÜE&¸rœŒ›€w€õdþn5fk^v™ì1òÎU¸ ¹(lq¯Æ£å¸N `qmÕcäv òäÉÓÿZh ˜¯ß¯IEND®B`‚bibshelf-1.6.0/pixmaps/stars3.png0000644000175000017500000000330611105623241013620 00000000000000‰PNG  IHDR‚ý¢ö}bKGDÿÿÿ ½§“ pHYs  šœtIMEÔ1*]±|tEXtCommentCreated with The GIMPïd%n*IDATxÚíšmlÕÇ3Ó]ëÖª`+·ÅÖ+ÕŠ4MÙ¨Á`Œ©Š‰^´h4öà ±W-?ðA…ë[¢`$â ÐZ£Uüp÷¾ØûBhr)!/͵¢ ½\ömfμœûagëmé®­_vþÉ“™ÍîÎoþgžsfžs|ùòåk&t'ððïÀ¨›eFØg® ð?` Ì2ãU@%† ¼ì3 ?±íïljš»å•†Ë7gÉÜöw65Ímkk«î˜%FËêÕ«çùŒÂÔX^pÜä«Òùe½ hØ@Íl1öîÝÛ©iÚ»@ù 3*B¡Ð¶}ûöuúŒÂF„Ø¿¿~VU´‹QKBjÕ€ÏfØÜ8# ²uëÖðè 3žØµk—|F‰ðÂÚŽ[ÂWͯËüUQøC] w,›×¬š!cg1E¡¶¶–†††& v†ÑÖÖÖšH$‚¢(>P¦ø®мaUe¿eî¨R'V¬éäe‘g€ÞÖ¿…1xðæ.!ñxœ•+Wž^¤wlé…5#àùTìû/~Ã< ,ìBÇX0<‘Y˲"‹¶kÌ{Nùjpp°~þüùsª««q]÷¼›¨ÑŠ1a"@÷ÎOOüéÖ¥jÙÂÈ•(Žùkoµu°_Gá%БÂàï‡Fyø¹ÄÀbÏHÁŒoFj&L„dzsçÎï½ -w†èïï_‰DÊÃáð”=©˜ÚO©°å£žoÛšoV.«­ž›¹P¶‘¹‡g“ÀJ'‚:}GG¹ûéÓÿñæ½Åª– 2Ž\;œk̲,Ž;ÆŽ;¾^›¢ñrq ¯¯¯>Ϭ‹¡L£Ä,ÕTtë§vé‚kcí=Ô oDi¤‘æâ»Žc Ê€te줌ÝèÊšÊÆÚµk±m»}‚[ÎTÒTU}/‹)Žãœ7Ä3c:J÷>Ó~ Šˆƒ3‘ + f DÚ Eè<Þˆæ912)#×TÖhcc#À¼<‘––%÷):»õÓK„û[Q™) Í8˜I0“H#‰4S`d# fš–*x¥b>š”‘-‡rM.Z´`AžŒë£ÑèYeÕ¹QÌŒé$ÂòºJm|Ž@q¾?ù3snÛïVÞyˆ‘Ñ1¤‘=zš›*^¥&etttpêÔ©³LVTTPÀB×⊊Šñ4 ƒ‘‘Ö¬Yã3¼Yœ©P!\j ¤mqüç1¢m#œIºÿÚ-rÿÈ'W]Áòƒ›/âjÕ¤²€†<Œ]€‘Joذá¡òòòÛÛÛÛ …B„B!€kóYSQU5¢( ¦iròäI6oÞ,u]ß ÄÅgL­•Oþ1(GÿV%—-)‘Àð$½}0ºæ>d¼9j¡FøKsssçúõë;·ó`,ŒF£7n쬩©éž®ôÓW·7ùp‚ÌkcÒSÞ"“n˜%Æb`Ð Ì™&ãnï÷ëȼÒå3òÔÇÞÂG> [¼…¥Ùb¨Àò<†¼Ü‹‹•áË—¯¢×ÿjÅò\*YIEND®B`‚bibshelf-1.6.0/aclocal.m40000644000175000017500000017347411123466777012113 00000000000000# generated automatically by aclocal 1.10.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(AC_AUTOCONF_VERSION, [2.61],, [m4_warning([this file was generated for autoconf 2.61. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Copyright (C) 1995-2002 Free Software Foundation, Inc. # Copyright (C) 2001-2003,2004 Red Hat, Inc. # # This file is free software, distributed under the terms of the GNU # General Public License. As a special exception to the GNU General # Public License, this file may be distributed as part of a program # that contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU Public License # but which still want to provide support for the GNU gettext functionality. # # Macro to add for using GNU gettext. # Ulrich Drepper , 1995, 1996 # # Modified to never use included libintl. # Owen Taylor , 12/15/1998 # # Major rework to remove unused code # Owen Taylor , 12/11/2002 # # Added better handling of ALL_LINGUAS from GNU gettext version # written by Bruno Haible, Owen Taylor 5/30/3002 # # Modified to require ngettext # Matthias Clasen 08/06/2004 # # We need this here as well, since someone might use autoconf-2.5x # to configure GLib then an older version to configure a package # using AM_GLIB_GNU_GETTEXT AC_PREREQ(2.53) dnl dnl We go to great lengths to make sure that aclocal won't dnl try to pull in the installed version of these macros dnl when running aclocal in the glib directory. dnl m4_copy([AC_DEFUN],[glib_DEFUN]) m4_copy([AC_REQUIRE],[glib_REQUIRE]) dnl dnl At the end, if we're not within glib, we'll define the public dnl definitions in terms of our private definitions. dnl # GLIB_LC_MESSAGES #-------------------- glib_DEFUN([GLIB_LC_MESSAGES], [AC_CHECK_HEADERS([locale.h]) if test $ac_cv_header_locale_h = yes; then AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your file defines LC_MESSAGES.]) fi fi]) # GLIB_PATH_PROG_WITH_TEST #---------------------------- dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], [# Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in /*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in ifelse([$5], , $PATH, [$5]); do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) # GLIB_WITH_NLS #----------------- glib_DEFUN([GLIB_WITH_NLS], dnl NLS is obligatory [USE_NLS=yes AC_SUBST(USE_NLS) gt_cv_have_gettext=no CATOBJEXT=NONE XGETTEXT=: INTLLIBS= AC_CHECK_HEADER(libintl.h, [gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, [AC_TRY_LINK([ #include ], [return !ngettext ("","", 1)], gt_cv_func_ngettext_libc=yes, gt_cv_func_ngettext_libc=no) ]) if test "$gt_cv_func_ngettext_libc" = "yes" ; then AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, [AC_TRY_LINK([ #include ], [return !dgettext ("","")], gt_cv_func_dgettext_libc=yes, gt_cv_func_dgettext_libc=no) ]) fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then AC_CHECK_FUNCS(bind_textdomain_codeset) fi # # If we don't have everything we want, check in libintl # if test "$gt_cv_func_dgettext_libc" != "yes" \ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then AC_CHECK_LIB(intl, bindtextdomain, [AC_CHECK_LIB(intl, ngettext, [AC_CHECK_LIB(intl, dgettext, gt_cv_func_dgettext_libintl=yes)])]) if test "$gt_cv_func_dgettext_libintl" != "yes" ; then AC_MSG_CHECKING([if -liconv is needed to use gettext]) AC_MSG_RESULT([]) AC_CHECK_LIB(intl, ngettext, [AC_CHECK_LIB(intl, dcgettext, [gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv], :,-liconv)], :,-liconv) fi # # If we found libintl, then check in it for bind_textdomain_codeset(); # we'll prefer libc if neither have bind_textdomain_codeset(), # and both have dgettext and ngettext # if test "$gt_cv_func_dgettext_libintl" = "yes" ; then glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset AC_CHECK_FUNCS(bind_textdomain_codeset) LIBS="$glib_save_LIBS" if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then gt_cv_func_dgettext_libc=no else if test "$gt_cv_func_dgettext_libc" = "yes" \ && test "$gt_cv_func_ngettext_libc" = "yes"; then gt_cv_func_dgettext_libintl=no fi fi fi fi if test "$gt_cv_func_dgettext_libc" = "yes" \ || test "$gt_cv_func_dgettext_libintl" = "yes"; then gt_cv_have_gettext=yes fi if test "$gt_cv_func_dgettext_libintl" = "yes"; then INTLLIBS="-lintl $libintl_extra_libs" fi if test "$gt_cv_have_gettext" = "yes"; then AC_DEFINE(HAVE_GETTEXT,1, [Define if the GNU gettext() function is already present or preinstalled.]) GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" AC_CHECK_FUNCS(dcgettext) MSGFMT_OPTS= AC_MSG_CHECKING([if msgfmt accepts -c]) GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" ], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) AC_SUBST(MSGFMT_OPTS) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr], [CATOBJEXT=.gmo DATADIRNAME=share], [case $host in *-*-solaris*) dnl On Solaris, if bind_textdomain_codeset is in libc, dnl GNU format message catalog is always supported, dnl since both are added to the libc all together. dnl Hence, we'd like to go with DATADIRNAME=share and dnl and CATOBJEXT=.gmo in this case. AC_CHECK_FUNC(bind_textdomain_codeset, [CATOBJEXT=.gmo DATADIRNAME=share], [CATOBJEXT=.mo DATADIRNAME=lib]) ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac]) LIBS="$glib_save_LIBS" INSTOBJEXT=.mo else gt_cv_have_gettext=no fi fi ]) if test "$gt_cv_have_gettext" = "yes" ; then AC_DEFINE(ENABLE_NLS, 1, [always defined to indicate that i18n is enabled]) fi dnl Test whether we really found GNU xgettext. if test "$XGETTEXT" != ":"; then dnl If it is not GNU xgettext we define it as : so that the dnl Makefiles still can work. if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else AC_MSG_RESULT( [found xgettext program is not GNU xgettext; ignore it]) XGETTEXT=":" fi fi # We need to process the po/ directory. POSUB=po AC_OUTPUT_COMMANDS( [case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac]) dnl These rules are solely for the distribution goal. While doing this dnl we only have to keep exactly one list of the available catalogs dnl in configure.in. for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" done dnl Make all variables we use known to autoconf. AC_SUBST(CATALOGS) AC_SUBST(CATOBJEXT) AC_SUBST(DATADIRNAME) AC_SUBST(GMOFILES) AC_SUBST(INSTOBJEXT) AC_SUBST(INTLLIBS) AC_SUBST(PO_IN_DATADIR_TRUE) AC_SUBST(PO_IN_DATADIR_FALSE) AC_SUBST(POFILES) AC_SUBST(POSUB) ]) # AM_GLIB_GNU_GETTEXT # ------------------- # Do checks necessary for use of gettext. If a suitable implementation # of gettext is found in either in libintl or in the C library, # it will set INTLLIBS to the libraries needed for use of gettext # and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable # gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() # on various variables needed by the Makefile.in.in installed by # glib-gettextize. dnl glib_DEFUN([GLIB_GNU_GETTEXT], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_HEADER_STDC])dnl GLIB_LC_MESSAGES GLIB_WITH_NLS if test "$gt_cv_have_gettext" = "yes"; then if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else AC_MSG_CHECKING(for catalogs to be installed) NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then NEW_LINGUAS="$NEW_LINGUAS $presentlang" fi done LINGUAS=$NEW_LINGUAS AC_MSG_RESULT($LINGUAS) fi dnl Construct list of names of catalog files to be constructed. if test -n "$LINGUAS"; then for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly dnl find the mkinstalldirs script in another subdir but ($top_srcdir). dnl Try to locate is. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi AC_SUBST(MKINSTALLDIRS) dnl Generate list of files to be processed by xgettext which will dnl be included in po/Makefile. test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then posrcprefix="$srcdir/" else posrcprefix="../$srcdir/" fi else posrcprefix="../" fi rm -f po/POTFILES sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ < $srcdir/po/POTFILES.in > po/POTFILES ]) # AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) # ------------------------------- # Define VARIABLE to the location where catalog files will # be installed by po/Makefile. glib_DEFUN([GLIB_DEFINE_LOCALEDIR], [glib_REQUIRE([GLIB_GNU_GETTEXT])dnl glib_save_prefix="$prefix" glib_save_exec_prefix="$exec_prefix" glib_save_datarootdir="$datarootdir" test "x$prefix" = xNONE && prefix=$ac_default_prefix test "x$exec_prefix" = xNONE && exec_prefix=$prefix datarootdir=`eval echo "${datarootdir}"` if test "x$CATOBJEXT" = "x.mo" ; then localedir=`eval echo "${libdir}/locale"` else localedir=`eval echo "${datadir}/locale"` fi prefix="$glib_save_prefix" exec_prefix="$glib_save_exec_prefix" datarootdir="$glib_save_datarootdir" AC_DEFINE_UNQUOTED($1, "$localedir", [Define the location where the catalogs will be installed]) ]) dnl dnl Now the definitions that aclocal will find dnl ifdef(glib_configure_in,[],[ AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) ])dnl # GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) # # Create a temporary file with TEST-FILE as its contents and pass the # file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with # 0 and perform ACTION-IF-FAIL for any other exit status. AC_DEFUN([GLIB_RUN_PROG], [cat >conftest.foo <<_ACEOF $2 _ACEOF if AC_RUN_LOG([$1 conftest.foo]); then m4_ifval([$3], [$3], [:]) m4_ifvaln([$4], [else $4])dnl echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD fi]) dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) # serial 40 IT_PROG_INTLTOOL AC_DEFUN([IT_PROG_INTLTOOL], [ AC_PREREQ([2.50])dnl AC_REQUIRE([AM_NLS])dnl case "$am__api_version" in 1.[01234]) AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) ;; *) ;; esac if test -n "$1"; then AC_MSG_CHECKING([for intltool >= $1]) INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` ] AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) fi AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) fi INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@' INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' AC_SUBST(INTLTOOL_DESKTOP_RULE) AC_SUBST(INTLTOOL_DIRECTORY_RULE) AC_SUBST(INTLTOOL_KEYS_RULE) AC_SUBST(INTLTOOL_PROP_RULE) AC_SUBST(INTLTOOL_OAF_RULE) AC_SUBST(INTLTOOL_PONG_RULE) AC_SUBST(INTLTOOL_SERVER_RULE) AC_SUBST(INTLTOOL_SHEET_RULE) AC_SUBST(INTLTOOL_SOUNDLIST_RULE) AC_SUBST(INTLTOOL_UI_RULE) AC_SUBST(INTLTOOL_XAM_RULE) AC_SUBST(INTLTOOL_KBD_RULE) AC_SUBST(INTLTOOL_XML_RULE) AC_SUBST(INTLTOOL_XML_NOMERGE_RULE) AC_SUBST(INTLTOOL_CAVES_RULE) AC_SUBST(INTLTOOL_SCHEMAS_RULE) AC_SUBST(INTLTOOL_THEME_RULE) AC_SUBST(INTLTOOL_SERVICE_RULE) AC_SUBST(INTLTOOL_POLICY_RULE) # Check the gettext tools to make sure they are GNU AC_PATH_PROG(XGETTEXT, xgettext) AC_PATH_PROG(MSGMERGE, msgmerge) AC_PATH_PROG(MSGFMT, msgfmt) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) fi AC_PATH_PROG(INTLTOOL_PERL, [perl]) if test -z "$INTLTOOL_PERL"; then AC_MSG_ERROR([perl not found; required for intltool]) fi if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then AC_MSG_ERROR([perl 5.x required for intltool]) fi if test "x$2" != "xno-xml"; then AC_MSG_CHECKING([for XML::Parser]) if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then AC_MSG_RESULT([ok]) else AC_MSG_ERROR([XML::Parser perl module is required for intltool]) fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile AC_SUBST(ALL_LINGUAS) # Set DATADIRNAME correctly if it is not set yet # (copied from glib-gettext.m4) if test -z "$DATADIRNAME"; then AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr]])], [DATADIRNAME=share], [case $host in *-*-solaris*) dnl On Solaris, if bind_textdomain_codeset is in libc, dnl GNU format message catalog is always supported, dnl since both are added to the libc all together. dnl Hence, we'd like to go with DATADIRNAME=share dnl in this case. AC_CHECK_FUNC(bind_textdomain_codeset, [DATADIRNAME=share], [DATADIRNAME=lib]) ;; *) [DATADIRNAME=lib] ;; esac]) fi AC_SUBST(DATADIRNAME) IT_PO_SUBDIR([po]) ]) # IT_PO_SUBDIR(DIRNAME) # --------------------- # All po subdirs have to be declared with this macro; the subdir "po" is # declared by IT_PROG_INTLTOOL. # AC_DEFUN([IT_PO_SUBDIR], [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. dnl dnl The following CONFIG_COMMANDS should be exetuted at the very end dnl of config.status. AC_CONFIG_COMMANDS_PRE([ AC_CONFIG_COMMANDS([$1/stamp-it], [ if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" ]; then AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) fi rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" >"$1/stamp-it.tmp" [sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" ] [sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r $1/POTFILES } ' "$1/Makefile.in" >"$1/Makefile"] rm -f "$1/Makefile.tmp" mv "$1/stamp-it.tmp" "$1/stamp-it" ]) ])dnl ]) # deprecated macros AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) # A hint is needed for aclocal from Automake <= 1.9.4: # AC_DEFUN([AC_PROG_INTLTOOL], ...) # nls.m4 serial 3 (gettext-0.15) dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ(2.50) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE(nls, [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT($USE_NLS) AC_SUBST(USE_NLS) ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # Copyright © 2004 Scott James Remnant . # # 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. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # # Similar to PKG_CHECK_MODULES, make sure that the first instance of # this or PKG_CHECK_MODULES is called, or make sure to call # PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_ifval([$2], [$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$PKG_CONFIG"; then if test -n "$$1"; then pkg_cv_[]$1="$$1" else PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) fi else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` else $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT ])], [AC_MSG_RESULT([no]) $4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) ifelse([$3], , :, [$3]) fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.10' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.10.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # This was merged into AC_PROG_CC in Autoconf. AU_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC AC_DIAGNOSE([obsolete], [$0: your code should no longer depend upon `am_cv_prog_cc_stdc', but upon `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when you adjust the code. You can also remove the above call to AC_PROG_CC if you already called it elsewhere.]) am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ]) AU_DEFUN([fp_PROG_CC_STDC]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 13 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.60])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) ]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 AC_DEFUN([AM_MAINTAINER_MODE], [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode is disabled by default AC_ARG_ENABLE(maintainer-mode, [ --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer], USE_MAINTAINER_MODE=$enableval, USE_MAINTAINER_MODE=no) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST(MAINT)dnl ] ) AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR bibshelf-1.6.0/INSTALL0000644000175000017500000002245011006750040011242 00000000000000Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 6. Often, you can also type `make uninstall' to remove the installed files again. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of the options to `configure', and exit. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. bibshelf-1.6.0/config.h.in0000644000175000017500000000362611123467021012244 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* always defined to indicate that i18n is enabled */ #undef ENABLE_NLS /* GETTEXT package name */ #undef GETTEXT_PACKAGE /* Define to 1 if you have the `bind_textdomain_codeset' function. */ #undef HAVE_BIND_TEXTDOMAIN_CODESET /* Define to 1 if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define if your file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES /* Define to 1 if you have the header file. */ #undef HAVE_LOCALE_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION bibshelf-1.6.0/bibshelf.desktop.in.in0000644000175000017500000000034211105623241014372 00000000000000[Desktop Entry] Name=BibShelf Book Manager Comment=Book collection management application Exec=bibshelf Icon=@PACKAGE_PIXMAPS_DIR@/book.png Terminal=false Categories=GNOME;Application;Other MultipleArgs=false Type=Application bibshelf-1.6.0/AUTHORS0000644000175000017500000000003711105623241011260 00000000000000Samuel Abels bibshelf-1.6.0/depcomp0000755000175000017500000004271311006750040011572 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2007-03-29.01 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software # Foundation, Inc. # 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, 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., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: bibshelf-1.6.0/COPYING0000644000175000017500000004311011123261672011250 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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 Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. bibshelf-1.6.0/install-sh0000755000175000017500000003246411006750040012223 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2006-12-25.00 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: bibshelf-1.6.0/configure.ac0000644000175000017500000000173011123262124012476 00000000000000dnl Process this file with autoconf to produce a configure script. dnl Created by Anjuta application wizard. AC_INIT(bibshelf, 1.6.0, http://debain.org/software/bibshelf) PACKAGE_PIXMAPS_DIR=$(datadir)/pixmaps AC_SUBST(PACKAGE_PIXMAPS_DIR) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE AC_ISC_POSIX AC_PROG_CXX AM_PROG_CC_STDC AC_HEADER_STDC dnl *************************************************************************** dnl Internatinalization dnl *************************************************************************** GETTEXT_PACKAGE=bibshelf AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name]) AM_GLIB_GNU_GETTEXT IT_PROG_INTLTOOL([0.35.0]) PKG_CHECK_MODULES(BIBSHELF, [gtkmm-2.4 >= 2.8 libglademm-2.4 >= 2.6 libxml++-2.6 libcurl]) AC_SUBST(BIBSHELF_CFLAGS) AC_SUBST(BIBSHELF_LIBS) AC_OUTPUT([ Makefile src/Makefile po/Makefile.in pixmaps/Makefile ])