From: Gary K. <amc...@us...> - 2005-03-20 23:32:25
|
Update of /cvsroot/gaim-bnet/gaim-bnet/autopackage In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17713/autopackage Added Files: Makefile.am gaim-bnet.apspec.in Log Message: Made sure we linked against glib Also, the start of the autopackage stuff, this is going to need tweaking yet.. --- NEW FILE: Makefile.am --- EXTRA_DIST= \ gaim-bnet.aspec.in --- NEW FILE: gaim-bnet.apspec.in --- # -*-shell-script-*- [Meta] RootName: @gaim-bnet.sourceforge.net/gaim-bnet:$SOFTWAREVERSION DisplayName: Gaim Battle.Net Protocol Plugin ShortName: gaim-bnet Maintainer: The Bnet Developers URL: http://gaim-bnet.sf.net Packager: Gary Kramlich <amc...@us...> Summary: Battle.net Protocol Plugin SoftwareVersion: @VERSION@ AutopackageTarget: 1.0 # Only uncomment InterfaceVersion if your package exposes interfaces to other software, # for instance if it includes DSOs or python/perl modules. See the developer guide for more info, # or ask on autopackage-dev if you don't understand interface versioning in autopackage. # # InterfaceVersion: 0.0 [Description] Allows Gaim to send messages over Battle.net [BuildPrepare] prepareBuild [BuildUnprepare] unprepareBuild [Imports] find -name '*.la' | xargs rm echo '*' | import [Prepare] # Dependency checking require @gaim.sourceforge.net/gaim 1.0 #require @gtk.org/glib 2.0 # there's not actually a glib skeleton yet, but we don't really need one here as long as it's glib 2.0 we depend on and not anything later [Install] # Put your installation script here prefix_local=`getPackagePrefix gaim` # if write access then install to modified PREFIX otherwise make a symlink in ~/.gaim if haveWriteAccess "$prefix_local"; then PREFIX="$prefix_local" else make_link=1 fi copyFiles ./lib/gaim "$PREFIX/lib" copyFiles ./share/pixmaps "$PREFIX/share" #installLocale ./share/locale if [[ "$make_link" == "1" ]] && [[ `id -u` != "0" ]]; then linkFile "$PREFIX/lib/gaim/libbnet.so" "~/.gaim/plugins/libbnet.so" fi unset make_link unset prefix_local [Uninstall] # Usually just the following line is enough to uninstall everything uninstallFromLog |