|
|
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
|
|
#
|
|
|
|
# Filename: package/.../agave/agave.conf
|
|
|
|
# Copyright (C) 2006 The OpenSDE Project
|
|
|
|
#
|
|
|
|
# More information can be found in the files COPYING and README.
|
|
|
|
#
|
|
|
|
# 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; version 2 of the License. A copy of the
|
|
|
|
# GNU General Public License can be found in the file COPYING.
|
|
|
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
|
|
|
|
|
|
# Gnome Support
|
|
|
|
if pkginstalled libgnome; then
|
|
|
|
. $base/package/*/*/gnome2-or-gtk-conf.in
|
|
|
|
var_append confopt ' ' "--enable-gnome=yes";
|
|
|
|
echo_status "Enabling Gnome Support"
|
|
|
|
else
|
|
|
|
var_append confopt ' ' "--enable-gnome=no";
|
|
|
|
echo_status "Disabling Gnome Support"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# GConf support
|
|
|
|
if pkginstalled gconf; then
|
|
|
|
var_append confopt ' ' "--enable-gconf=yes";
|
|
|
|
echo_status "Enabling GConf Support"
|
|
|
|
else
|
|
|
|
var_append confopt ' ' "--enable-gconf=no";
|
|
|
|
echo_status "Disabling GConf Support"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#CPPUnit support
|
|
|
|
if pkginstalled cppunit; then
|
|
|
|
var_append confopt ' ' "--enable-cppunit=yes";
|
|
|
|
echo_status "Enabling CPPUnit Support"
|
|
|
|
else
|
|
|
|
var_append confopt ' ' "--enable-cppunit=no";
|
|
|
|
echo_status "Disabling CPPUnit Support"
|
|
|
|
fi
|
|
|
|
|