NAME: gnobog VERSION: 0.4.3 RELEASE: 4 SUMMARY: Gnome Bookmarks organizer URL: http://gnobog.sourceforge.net/ DISTRIBUTION: Cygwin GNOME 1.4 VENDOR: LICENSE: GPL PACKAGER: Hansom Young GROUP: Applications/Internet OS: Cygwin ARCH: i586 SOURCE RPM: DESCRIPTION: Gnobog is a tool to manage bookmarks easily and ease web surfing. ----------------------------------------------------------------- @ gnobog category: GNOME-net-apps sdesc: "Gnome Bookmarks organizer" ldesc: "Gnobog is a tool to manage bookmarks easily and ease web surfing." requires: gtk+ libglade gnome-libs libintl2 curr: 0.4.3-4 prev: 0.4.3-3 ---------------------------------------------------------- About this Cygwin GNOME port: ----------------------------- Built on cygwin-1.3.20, with gcc-3.2-3, binutils-20021107, gettext-0.11.5 and gtk+-1.2.10, gnome-libs-1.4.2, libglade-0.16. NOT yet tested on ANY other configuration. REQUIRES: gtk+ gnome-libs libglade libintl2 Change Log ----------- March 18, 2003 0.4.3-4 Rebuilt on CyGNOME-1.4beta2, to link against standalone libpopt0 March 3, 2003 0.4.3-3 Added support for Windows URL handler.(ShellExecute) Feb 25, 2003 0.4.3-2 Added support for dillo browser Jan 08, 2003 0.4.3-2 Updated to 0.4.3 Packed in HTML help file into tarball Dec 26, 2002 0.4.2-2 Made cyggnobog.dll so that the callback functions would work. Dec 25, 2002 0.4.2-1 First Cygwin port Build gnobog for Cygwin GNOME ---------------------------- SOURCE: http://download.sourceforge.net/gnobog/gnobog-0.4.3.tar.gz http://prdownloads.sourceforge.net/gnobog/gnobog-0.4.3.tar.gz?download Patches: gnobog-0.4.3-cygwin.patch Cygwin libglade patch gnobog-0.4.3-dillo.patch Dillo browser support gnobog-0.4.3-shellexec.patch Windows default browser support In order to build gnobog, you need some GNOME libraries, such as glib, gtk+, libglade and gnome-libs. The source package of them could be found on ftp://ftp.gnome.org/pub/GNOME/sources/. Patches for Cygwin port of GNOME libraries is contributed and maintained by Steven O'Brian, at http://homepage.ntlworld.com/steven.obrien2/. You can also download binary packages of GNOME libraries prebuilt for Cygwin, from the Cygwin GNOME project http://cygnome.sourceforge.net. This project is also based on the Steven O'Brian's patches. Although you can build Gnobog smoothly on Cygwin without any patch, it won't work properly, as gnobog use libglade XML to set callback functions. You must build gnobog into a shared library so that all the symbols would be visible to libglade. 1. Preparing - unpack source tarball - apply the patch for libglade - apply the patch for dillo and ShellExecute (optional) - ./configure 2. make 3. when make done (if you didn't apply gnobog-0.4.3-cygwin.patch) $ vi gnobog_main.c: + #ifdef __CYGWIN__ + int gnobog_main (int argc, char* argv[]) + #else int main (int argc, char* argv[]) + #endif $ make gnobog_main.o $ gcc -shared -o cyggnobog.dll -Wl,--out-implib=libgnobog.dll.a \ -Wl,--export-all-symbols *.o \ -Wl,--no-whole-archive `gtk-config --libs` `gnome-config --libs libglade` $ vi gnobog.c # create a wrapper + extern int gnobog_main (int argc, char* argv[]) + + int main(int argc, char *argv[]) + { + return gnobog_main(argc, argv); + } $ rm gnobog.exe && gcc -o gnobog.exe gnobog.c -L. -lgnobog 4. make install ------------------------------------------------------------------