diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-09-10 14:24:06 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-09-10 14:24:06 +0800 |
commit | 1053695e916acf1fd4a05421ae1c1f34aa66f712 (patch) | |
tree | fe086ebc62857ee7f1ffff7e08ecaba2ed2ee1b3 /science/gchemutils | |
parent | 3f8c473619d0be6d7cfb769c04e056ce5d31721c (diff) | |
download | marcuscom-ports-1053695e916acf1fd4a05421ae1c1f34aa66f712.tar marcuscom-ports-1053695e916acf1fd4a05421ae1c1f34aa66f712.tar.gz marcuscom-ports-1053695e916acf1fd4a05421ae1c1f34aa66f712.tar.bz2 marcuscom-ports-1053695e916acf1fd4a05421ae1c1f34aa66f712.tar.lz marcuscom-ports-1053695e916acf1fd4a05421ae1c1f34aa66f712.tar.xz marcuscom-ports-1053695e916acf1fd4a05421ae1c1f34aa66f712.tar.zst marcuscom-ports-1053695e916acf1fd4a05421ae1c1f34aa66f712.zip |
share/gnome/ -> share/.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9555 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'science/gchemutils')
-rw-r--r-- | science/gchemutils/Makefile | 56 | ||||
-rw-r--r-- | science/gchemutils/distinfo | 3 | ||||
-rw-r--r-- | science/gchemutils/files/patch-gcu-formula.cc | 31 | ||||
-rw-r--r-- | science/gchemutils/files/patch-programs-gchemcalc.cc | 11 | ||||
-rw-r--r-- | science/gchemutils/pkg-descr | 5 | ||||
-rw-r--r-- | science/gchemutils/pkg-plist | 368 |
6 files changed, 474 insertions, 0 deletions
diff --git a/science/gchemutils/Makefile b/science/gchemutils/Makefile new file mode 100644 index 000000000..02e4d219d --- /dev/null +++ b/science/gchemutils/Makefile @@ -0,0 +1,56 @@ +# New ports collection makefile for: gchemutils +# Date created: Mar 18, 2003 +# Whom: Pav Lucistnik <pav@oook.cz> +# +# $FreeBSD$ +# + +PORTNAME= gchemutils +PORTVERSION= 0.8.2 +PORTREVISION= 1 +CATEGORIES= science +MASTER_SITES= ${MASTER_SITE_SAVANNAH} +MASTER_SITE_SUBDIR= ${PORTNAME}/0.8 +DISTNAME= gnome-chemistry-utils-${PORTVERSION} + +MAINTAINER= pav@FreeBSD.org +COMMENT= C++ classes and Gtk2 widgets related to chemistry + +LIB_DEPENDS= gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext \ + openbabel.3:${PORTSDIR}/science/openbabel \ + goffice-0.4:${PORTSDIR}/devel/goffice +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/bodr.pc:${PORTSDIR}/science/bodr \ + ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:${PORTSDIR}/science/chemical-mime-data +RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/bodr.pc:${PORTSDIR}/science/bodr \ + ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:${PORTSDIR}/science/chemical-mime-data + +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_GNOME= gnomehack intlhack libglade2 libgnomeprintui libgnomeui gnomedocutils +USE_GMAKE= yes +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --with-omf-dir=${PREFIX}/share/omf +INSTALLS_ICONS= yes +INSTALLS_OMF= yes +GCONF_SCHEMAS= gcrystal.schemas + +MAN1= gchem3d-viewer.1 gchemcalc.1 gchemtable.1 gcrystal.1 +MAN3= libgcu.3 + +OPTIONS= MOZILLA "Build mozilla plugin" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_MOZILLA) +USE_GECKO= mozilla +.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk" +CONFIGURE_ARGS+=--enable-mozilla-plugin +PLIST_SUB= MOZILLA="" +.else +CONFIGURE_ARGS+=--disable-mozilla-plugin +PLIST_SUB= MOZILLA="@comment " +.endif + +.include <bsd.port.post.mk> diff --git a/science/gchemutils/distinfo b/science/gchemutils/distinfo new file mode 100644 index 000000000..5973af047 --- /dev/null +++ b/science/gchemutils/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome-chemistry-utils-0.8.2.tar.bz2) = 804946c5a6f9587e9707918f7f1b4d06 +SHA256 (gnome-chemistry-utils-0.8.2.tar.bz2) = 0a89295243d93ae997dc22db535bb98279a47cf932b68e8ed023bba9c3e81dc9 +SIZE (gnome-chemistry-utils-0.8.2.tar.bz2) = 1535798 diff --git a/science/gchemutils/files/patch-gcu-formula.cc b/science/gchemutils/files/patch-gcu-formula.cc new file mode 100644 index 000000000..dc3bde3c9 --- /dev/null +++ b/science/gchemutils/files/patch-gcu-formula.cc @@ -0,0 +1,31 @@ +--- gcu/formula.cc.orig Thu Feb 9 13:24:54 2006 ++++ gcu/formula.cc Mon Mar 20 18:17:25 2006 +@@ -31,6 +31,19 @@ + #include <glib/gi18n.h> + #include <sstream> + ++/* XXX Implement strndup for FreeBSD. */ ++static char * ++strndup(const char *str, size_t len) { ++ char *ret; ++ ++ if ((str == NULL || len < 0)) return(NULL); ++ ret = (char *)malloc(len + 1); ++ if (ret == NULL) return(NULL); ++ strncpy(ret, str, len); ++ ret[len] = '\0'; ++ return(ret); ++} ++ + using namespace gcu; + + parse_error::parse_error(const string& __arg, int start, int length) +@@ -448,7 +461,7 @@ + atom_weight = Element::GetElement ((*i).first)->GetWeight (atom_prec); + if (atom_prec == 0) + m_Artificial = true; +- delta += pow10 (-atom_prec) * (*i).second; ++ delta += pow (10.0, -atom_prec) * (*i).second; + m_Weight += atom_weight * (*i).second; + } + m_WeightPrec = (int) ceil (-log10 (delta) - 1e-5); diff --git a/science/gchemutils/files/patch-programs-gchemcalc.cc b/science/gchemutils/files/patch-programs-gchemcalc.cc new file mode 100644 index 000000000..04da29c36 --- /dev/null +++ b/science/gchemutils/files/patch-programs-gchemcalc.cc @@ -0,0 +1,11 @@ +--- programs/calc/gchemcalc.cc.orig Sat Feb 25 18:35:50 2006 ++++ programs/calc/gchemcalc.cc Mon Mar 20 18:22:41 2006 +@@ -140,7 +140,7 @@ + } else { + if (prec < 0) { + // round the value to replace not significant figures by 0s. +- double offs = pow10 (prec); ++ double offs = pow (10.0, prec); + weight = rint (weight * offs) / offs; + } + format = artificial? g_strdup ("(%.0f)"): g_strdup ("%.0f"); diff --git a/science/gchemutils/pkg-descr b/science/gchemutils/pkg-descr new file mode 100644 index 000000000..4cea59d9d --- /dev/null +++ b/science/gchemutils/pkg-descr @@ -0,0 +1,5 @@ +Gnome Chemistry Utils provide C++ classes and Gtk+-2 widgets related +to chemistry. They will be used in future versions of Gnome Crystal +and GChemPaint. + +WWW: http://www.nongnu.org/gchemutils/ diff --git a/science/gchemutils/pkg-plist b/science/gchemutils/pkg-plist new file mode 100644 index 000000000..a524d2062 --- /dev/null +++ b/science/gchemutils/pkg-plist @@ -0,0 +1,368 @@ +bin/gchem3d-viewer +bin/gchemcalc +bin/gchemtable +bin/gcrystal +include/gcu/gcu/application.h +include/gcu/gcu/atom.h +include/gcu/gcu/bond.h +include/gcu/gcu/chem3ddoc.h +include/gcu/gcu/chemistry.h +include/gcu/gcu/crystalatom.h +include/gcu/gcu/crystalcleavage.h +include/gcu/gcu/crystaldoc.h +include/gcu/gcu/crystalline.h +include/gcu/gcu/crystalview.h +include/gcu/gcu/dialog-owner.h +include/gcu/gcu/dialog.h +include/gcu/gcu/document.h +include/gcu/gcu/element.h +include/gcu/gcu/filechooser.h +include/gcu/gcu/formula.h +include/gcu/gcu/gldocument.h +include/gcu/gcu/glview.h +include/gcu/gcu/gtkchem3dviewer.h +include/gcu/gcu/gtkcomboperiodic.h +include/gcu/gcu/gtkcrystalviewer.h +include/gcu/gcu/gtkperiodic.h +include/gcu/gcu/isotope.h +include/gcu/gcu/macros.h +include/gcu/gcu/matrix.h +include/gcu/gcu/matrix2d.h +include/gcu/gcu/object.h +include/gcu/gcu/value.h +include/gcu/gcu/xml-utils.h +lib/libgcu.la +lib/libgcu.so +lib/libgcu.so.8 +%%MOZILLA%%lib/mozilla/plugins/libmozgcu.la +%%MOZILLA%%lib/mozilla/plugins/libmozgcu.so +libdata/pkgconfig/gcu.pc +%%MOZILLA%%libexec/chem-viewer +share/applications/gchem3d-viewer.desktop +share/applications/gchemcalc.desktop +share/applications/gchemtable.desktop +share/applications/gcrystal.desktop +share/doc/gchemutils/reference/annotated.html +share/doc/gchemutils/reference/application_8h-source.html +share/doc/gchemutils/reference/atom_8h-source.html +share/doc/gchemutils/reference/bond_8h-source.html +share/doc/gchemutils/reference/chem3ddoc_8h-source.html +share/doc/gchemutils/reference/chemistry_8h-source.html +share/doc/gchemutils/reference/chemistry_8h.html +share/doc/gchemutils/reference/classes.html +share/doc/gchemutils/reference/classgcu_1_1Application-members.html +share/doc/gchemutils/reference/classgcu_1_1Application.html +share/doc/gchemutils/reference/classgcu_1_1Application.png +share/doc/gchemutils/reference/classgcu_1_1Atom-members.html +share/doc/gchemutils/reference/classgcu_1_1Atom.html +share/doc/gchemutils/reference/classgcu_1_1Atom.png +share/doc/gchemutils/reference/classgcu_1_1Bond-members.html +share/doc/gchemutils/reference/classgcu_1_1Bond.html +share/doc/gchemutils/reference/classgcu_1_1Bond.png +share/doc/gchemutils/reference/classgcu_1_1Chem3dDoc-members.html +share/doc/gchemutils/reference/classgcu_1_1Chem3dDoc.html +share/doc/gchemutils/reference/classgcu_1_1Chem3dDoc.png +share/doc/gchemutils/reference/classgcu_1_1CrystalAtom-members.html +share/doc/gchemutils/reference/classgcu_1_1CrystalAtom.html +share/doc/gchemutils/reference/classgcu_1_1CrystalAtom.png +share/doc/gchemutils/reference/classgcu_1_1CrystalCleavage-members.html +share/doc/gchemutils/reference/classgcu_1_1CrystalCleavage.html +share/doc/gchemutils/reference/classgcu_1_1CrystalDoc-members.html +share/doc/gchemutils/reference/classgcu_1_1CrystalDoc.html +share/doc/gchemutils/reference/classgcu_1_1CrystalDoc.png +share/doc/gchemutils/reference/classgcu_1_1CrystalLine-members.html +share/doc/gchemutils/reference/classgcu_1_1CrystalLine.html +share/doc/gchemutils/reference/classgcu_1_1CrystalView-members.html +share/doc/gchemutils/reference/classgcu_1_1CrystalView.html +share/doc/gchemutils/reference/classgcu_1_1CrystalView.png +share/doc/gchemutils/reference/classgcu_1_1Dialog-members.html +share/doc/gchemutils/reference/classgcu_1_1Dialog.html +share/doc/gchemutils/reference/classgcu_1_1DialogOwner-members.html +share/doc/gchemutils/reference/classgcu_1_1DialogOwner.html +share/doc/gchemutils/reference/classgcu_1_1DialogOwner.png +share/doc/gchemutils/reference/classgcu_1_1DimensionalValue-members.html +share/doc/gchemutils/reference/classgcu_1_1DimensionalValue.html +share/doc/gchemutils/reference/classgcu_1_1DimensionalValue.png +share/doc/gchemutils/reference/classgcu_1_1Document-members.html +share/doc/gchemutils/reference/classgcu_1_1Document.html +share/doc/gchemutils/reference/classgcu_1_1Document.png +share/doc/gchemutils/reference/classgcu_1_1Element-members.html +share/doc/gchemutils/reference/classgcu_1_1Element.html +share/doc/gchemutils/reference/classgcu_1_1FileChooser-members.html +share/doc/gchemutils/reference/classgcu_1_1FileChooser.html +share/doc/gchemutils/reference/classgcu_1_1Formula-members.html +share/doc/gchemutils/reference/classgcu_1_1Formula.html +share/doc/gchemutils/reference/classgcu_1_1GLDocument-members.html +share/doc/gchemutils/reference/classgcu_1_1GLDocument.html +share/doc/gchemutils/reference/classgcu_1_1GLDocument.png +share/doc/gchemutils/reference/classgcu_1_1GLView-members.html +share/doc/gchemutils/reference/classgcu_1_1GLView.html +share/doc/gchemutils/reference/classgcu_1_1GLView.png +share/doc/gchemutils/reference/classgcu_1_1Isotope-members.html +share/doc/gchemutils/reference/classgcu_1_1Isotope.html +share/doc/gchemutils/reference/classgcu_1_1Isotope.png +share/doc/gchemutils/reference/classgcu_1_1IsotopicPattern-members.html +share/doc/gchemutils/reference/classgcu_1_1IsotopicPattern.html +share/doc/gchemutils/reference/classgcu_1_1LocalizedStringValue-members.html +share/doc/gchemutils/reference/classgcu_1_1LocalizedStringValue.html +share/doc/gchemutils/reference/classgcu_1_1LocalizedStringValue.png +share/doc/gchemutils/reference/classgcu_1_1Matrix-members.html +share/doc/gchemutils/reference/classgcu_1_1Matrix.html +share/doc/gchemutils/reference/classgcu_1_1Matrix2D-members.html +share/doc/gchemutils/reference/classgcu_1_1Matrix2D.html +share/doc/gchemutils/reference/classgcu_1_1Object-members.html +share/doc/gchemutils/reference/classgcu_1_1Object.html +share/doc/gchemutils/reference/classgcu_1_1Object.png +share/doc/gchemutils/reference/classgcu_1_1SimpleValue-members.html +share/doc/gchemutils/reference/classgcu_1_1SimpleValue.html +share/doc/gchemutils/reference/classgcu_1_1SimpleValue.png +share/doc/gchemutils/reference/classgcu_1_1StringValue-members.html +share/doc/gchemutils/reference/classgcu_1_1StringValue.html +share/doc/gchemutils/reference/classgcu_1_1StringValue.png +share/doc/gchemutils/reference/classgcu_1_1Value-members.html +share/doc/gchemutils/reference/classgcu_1_1Value.html +share/doc/gchemutils/reference/classgcu_1_1Value.png +share/doc/gchemutils/reference/classgcu_1_1parse__error-members.html +share/doc/gchemutils/reference/classgcu_1_1parse__error.html +share/doc/gchemutils/reference/crystalatom_8h-source.html +share/doc/gchemutils/reference/crystalcleavage_8h-source.html +share/doc/gchemutils/reference/crystaldoc_8h-source.html +share/doc/gchemutils/reference/crystalline_8h-source.html +share/doc/gchemutils/reference/crystalview_8h-source.html +share/doc/gchemutils/reference/dialog-owner_8h-source.html +share/doc/gchemutils/reference/dialog_8h-source.html +share/doc/gchemutils/reference/dir_56e7ad8c3419b1751f957adcf4365adc.html +share/doc/gchemutils/reference/dir_9f2d8162e43306b5d99d99e2edbed32d.html +share/doc/gchemutils/reference/dirs.html +share/doc/gchemutils/reference/document_8h-source.html +share/doc/gchemutils/reference/doxygen.css +share/doc/gchemutils/reference/doxygen.png +share/doc/gchemutils/reference/element_8h-source.html +share/doc/gchemutils/reference/filechooser_8h-source.html +share/doc/gchemutils/reference/files.html +share/doc/gchemutils/reference/formula_8h-source.html +share/doc/gchemutils/reference/functions.html +share/doc/gchemutils/reference/functions_0x62.html +share/doc/gchemutils/reference/functions_0x63.html +share/doc/gchemutils/reference/functions_0x64.html +share/doc/gchemutils/reference/functions_0x65.html +share/doc/gchemutils/reference/functions_0x66.html +share/doc/gchemutils/reference/functions_0x67.html +share/doc/gchemutils/reference/functions_0x68.html +share/doc/gchemutils/reference/functions_0x69.html +share/doc/gchemutils/reference/functions_0x6b.html +share/doc/gchemutils/reference/functions_0x6c.html +share/doc/gchemutils/reference/functions_0x6d.html +share/doc/gchemutils/reference/functions_0x6e.html +share/doc/gchemutils/reference/functions_0x6f.html +share/doc/gchemutils/reference/functions_0x70.html +share/doc/gchemutils/reference/functions_0x72.html +share/doc/gchemutils/reference/functions_0x73.html +share/doc/gchemutils/reference/functions_0x74.html +share/doc/gchemutils/reference/functions_0x75.html +share/doc/gchemutils/reference/functions_0x76.html +share/doc/gchemutils/reference/functions_0x77.html +share/doc/gchemutils/reference/functions_0x78.html +share/doc/gchemutils/reference/functions_0x79.html +share/doc/gchemutils/reference/functions_0x7a.html +share/doc/gchemutils/reference/functions_0x7e.html +share/doc/gchemutils/reference/functions_func.html +share/doc/gchemutils/reference/functions_func_0x62.html +share/doc/gchemutils/reference/functions_func_0x63.html +share/doc/gchemutils/reference/functions_func_0x64.html +share/doc/gchemutils/reference/functions_func_0x65.html +share/doc/gchemutils/reference/functions_func_0x66.html +share/doc/gchemutils/reference/functions_func_0x67.html +share/doc/gchemutils/reference/functions_func_0x68.html +share/doc/gchemutils/reference/functions_func_0x69.html +share/doc/gchemutils/reference/functions_func_0x6b.html +share/doc/gchemutils/reference/functions_func_0x6c.html +share/doc/gchemutils/reference/functions_func_0x6d.html +share/doc/gchemutils/reference/functions_func_0x6e.html +share/doc/gchemutils/reference/functions_func_0x6f.html +share/doc/gchemutils/reference/functions_func_0x70.html +share/doc/gchemutils/reference/functions_func_0x72.html +share/doc/gchemutils/reference/functions_func_0x73.html +share/doc/gchemutils/reference/functions_func_0x74.html +share/doc/gchemutils/reference/functions_func_0x75.html +share/doc/gchemutils/reference/functions_func_0x76.html +share/doc/gchemutils/reference/functions_func_0x77.html +share/doc/gchemutils/reference/functions_func_0x78.html +share/doc/gchemutils/reference/functions_func_0x79.html +share/doc/gchemutils/reference/functions_func_0x7a.html +share/doc/gchemutils/reference/functions_func_0x7e.html +share/doc/gchemutils/reference/functions_vars.html +share/doc/gchemutils/reference/gldocument_8h-source.html +share/doc/gchemutils/reference/globals.html +share/doc/gchemutils/reference/globals_enum.html +share/doc/gchemutils/reference/globals_eval.html +share/doc/gchemutils/reference/globals_func.html +share/doc/gchemutils/reference/globals_type.html +share/doc/gchemutils/reference/glview_8h-source.html +share/doc/gchemutils/reference/gtkchem3dviewer_8h-source.html +share/doc/gchemutils/reference/gtkchem3dviewer_8h.html +share/doc/gchemutils/reference/gtkcomboperiodic_8h-source.html +share/doc/gchemutils/reference/gtkcomboperiodic_8h.html +share/doc/gchemutils/reference/gtkcrystalviewer_8h-source.html +share/doc/gchemutils/reference/gtkcrystalviewer_8h.html +share/doc/gchemutils/reference/gtkperiodic_8h-source.html +share/doc/gchemutils/reference/gtkperiodic_8h.html +share/doc/gchemutils/reference/hierarchy.html +share/doc/gchemutils/reference/index.html +share/doc/gchemutils/reference/isotope_8h-source.html +share/doc/gchemutils/reference/macros_8h-source.html +share/doc/gchemutils/reference/macros_8h.html +share/doc/gchemutils/reference/matrix2d_8h-source.html +share/doc/gchemutils/reference/matrix_8h-source.html +share/doc/gchemutils/reference/namespacegcu.html +share/doc/gchemutils/reference/namespacemembers.html +share/doc/gchemutils/reference/namespacemembers_enum.html +share/doc/gchemutils/reference/namespacemembers_eval.html +share/doc/gchemutils/reference/namespacemembers_type.html +share/doc/gchemutils/reference/namespaces.html +share/doc/gchemutils/reference/object_8h-source.html +share/doc/gchemutils/reference/structGcuAtomicRadius-members.html +share/doc/gchemutils/reference/structGcuAtomicRadius.html +share/doc/gchemutils/reference/structGcuDimensionalValue-members.html +share/doc/gchemutils/reference/structGcuDimensionalValue.html +share/doc/gchemutils/reference/structGcuElectronegativity-members.html +share/doc/gchemutils/reference/structGcuElectronegativity.html +share/doc/gchemutils/reference/structGcuIsotope-members.html +share/doc/gchemutils/reference/structGcuIsotope.html +share/doc/gchemutils/reference/structGcuIsotope.png +share/doc/gchemutils/reference/structGcuValue-members.html +share/doc/gchemutils/reference/structGcuValue.html +share/doc/gchemutils/reference/structGtkChem3DViewer.html +share/doc/gchemutils/reference/structGtkComboPeriodic.html +share/doc/gchemutils/reference/structGtkCrystalViewer.html +share/doc/gchemutils/reference/structGtkPeriodic.html +share/doc/gchemutils/reference/tab_b.gif +share/doc/gchemutils/reference/tab_l.gif +share/doc/gchemutils/reference/tab_r.gif +share/doc/gchemutils/reference/tabs.css +share/doc/gchemutils/reference/testgtkchem3dviewer_8c-source.html +share/doc/gchemutils/reference/testgtkchem3dviewer_8c.html +share/doc/gchemutils/reference/testgtkcrystalviewer_8c-source.html +share/doc/gchemutils/reference/testgtkcrystalviewer_8c.html +share/doc/gchemutils/reference/testgtkperiodic_8c-source.html +share/doc/gchemutils/reference/testgtkperiodic_8c.html +share/doc/gchemutils/reference/value_8h-source.html +share/doc/gchemutils/reference/xml-utils_8h-source.html +share/doc/gchemutils/reference/xml-utils_8h.html +share/gchemutils/elecprops.xml +share/gchemutils/elements.xml +share/gchemutils/glade/crystal/atoms.glade +share/gchemutils/glade/crystal/cell.glade +share/gchemutils/glade/crystal/cleavages.glade +share/gchemutils/glade/crystal/lines.glade +share/gchemutils/glade/crystal/prefs.glade +share/gchemutils/glade/crystal/size.glade +share/gchemutils/glade/crystal/view-settings.glade +share/gchemutils/glade/gchemcalc.glade +share/gchemutils/glade/gtkperiodic.glade +share/gchemutils/glade/image-resolution.glade +share/gchemutils/glade/image-size.glade +share/gchemutils/glade/table/curve.glade +share/gchemutils/glade/table/eltpage.glade +share/gchemutils/glade/table/family.glade +share/gchemutils/glade/table/state-thermometer.glade +share/gchemutils/isotopes.xml +share/gchemutils/pixmaps/gcrystal_logo.png +share/gchemutils/radii.xml +share/gnome/help/gchem3d-viewer/C/figures/main-window.png +share/gnome/help/gchem3d-viewer/C/gchem3d-viewer.xml +share/gnome/help/gchem3d-viewer/C/legal.xml +share/gnome/help/gchemcalc/C/figures/braces.png +share/gnome/help/gchemcalc/C/figures/composition.png +share/gnome/help/gchemcalc/C/figures/formula.png +share/gnome/help/gchemcalc/C/figures/pattern.png +share/gnome/help/gchemcalc/C/figures/start.png +share/gnome/help/gchemcalc/C/gchemcalc.xml +share/gnome/help/gchemcalc/C/legal.xml +share/gnome/help/gchemtable/C/figures/curve.png +share/gnome/help/gchemtable/C/figures/elec.png +share/gnome/help/gchemtable/C/figures/family.png +share/gnome/help/gchemtable/C/figures/main.png +share/gnome/help/gchemtable/C/figures/radii.png +share/gnome/help/gchemtable/C/figures/start.png +share/gnome/help/gchemtable/C/figures/state.png +share/gnome/help/gchemtable/C/figures/thermo.png +share/gnome/help/gchemtable/C/gchemtable.xml +share/gnome/help/gchemtable/C/legal.xml +share/gnome/help/gcrystal/C/figures/atoms-dlg.png +share/gnome/help/gcrystal/C/figures/cleavages-dlg.png +share/gnome/help/gcrystal/C/figures/default-view.png +share/gnome/help/gcrystal/C/figures/lattice-dlg.png +share/gnome/help/gcrystal/C/figures/lines-dlg.png +share/gnome/help/gcrystal/C/figures/main-window.png +share/gnome/help/gcrystal/C/figures/print-res.png +share/gnome/help/gcrystal/C/figures/size-dlg.png +share/gnome/help/gcrystal/C/figures/view-settings.png +share/gnome/help/gcrystal/C/gcrystal.xml +share/gnome/help/gcrystal/C/legal.xml +share/omf/gchem3d-viewer/gchem3d-viewer-C.omf +share/omf/gchemcalc/gchemcalc-C.omf +share/omf/gcrystal/gcrystal-C.omf +share/omf/gchemtable/gchemtable-C.omf +share/mimelnk/application/x-gcrystal.desktop +share/icons/hicolor/32x32/mimetypes/gnome-mime-application-x-gcrystal.png +share/icons/hicolor/32x32/apps/gchem3d-viewer.png +share/icons/hicolor/32x32/apps/gchemcalc.png +share/icons/hicolor/32x32/apps/gchemtable.png +share/icons/hicolor/32x32/apps/gcrystal.png +share/icons/hicolor/48x48/mimetypes/gnome-mime-application-x-gcrystal.png +share/icons/hicolor/48x48/apps/gchem3d-viewer.png +share/icons/hicolor/48x48/apps/gchemcalc.png +share/icons/hicolor/48x48/apps/gchemtable.png +share/icons/hicolor/48x48/apps/gcrystal.png +share/icons/hicolor/72x72/mimetypes/gnome-mime-application-x-gcrystal.png +share/icons/hicolor/72x72/apps/gchem3d-viewer.png +share/icons/hicolor/72x72/apps/gchemcalc.png +share/icons/hicolor/72x72/apps/gchemtable.png +share/icons/hicolor/72x72/apps/gcrystal.png +share/icons/hicolor/128x128/mimetypes/gnome-mime-application-x-gcrystal.png +share/icons/hicolor/128x128/apps/gchem3d-viewer.png +share/icons/hicolor/128x128/apps/gchemcalc.png +share/icons/hicolor/128x128/apps/gchemtable.png +share/icons/hicolor/128x128/apps/gcrystal.png +share/locale/de/LC_MESSAGES/gchemutils.mo +share/locale/es/LC_MESSAGES/gchemutils.mo +share/locale/fr/LC_MESSAGES/gchemutils.mo +share/locale/it/LC_MESSAGES/gchemutils.mo +share/locale/pl/LC_MESSAGES/gchemutils.mo +share/locale/ru/LC_MESSAGES/gchemutils.mo +share/mime/chemical/x-mdl-molfile.xml +share/mime/chemical/x-pdb.xml +share/mime/chemical/x-xyz.xml +share/mime/packages/gchemutils.xml +@dirrmtry share/applications +@dirrm share/doc/gchemutils/reference +@dirrm share/doc/gchemutils +@dirrm share/gchemutils/pixmaps +@dirrm share/gchemutils/glade/crystal +@dirrm share/gchemutils/glade/table +@dirrm share/gchemutils/glade +@dirrm share/gchemutils +@dirrm share/omf/gchem3d-viewer +@dirrm share/omf/gchemcalc +@dirrm share/omf/gcrystal +@dirrm share/omf/gchemtable +@dirrm share/gnome/help/gchem3d-viewer/C/figures +@dirrm share/gnome/help/gchem3d-viewer/C +@dirrm share/gnome/help/gchem3d-viewer +@dirrm share/gnome/help/gchemtable/C/figures +@dirrm share/gnome/help/gchemtable/C +@dirrm share/gnome/help/gchemtable +@dirrm share/gnome/help/gchemcalc/C/figures +@dirrm share/gnome/help/gchemcalc/C +@dirrm share/gnome/help/gchemcalc +@dirrm share/gnome/help/gcrystal/C/figures +@dirrm share/gnome/help/gcrystal/C +@dirrm share/gnome/help/gcrystal +@dirrmtry share/mime/chemical +@dirrmtry share/mimelnk/application +@dirrmtry share/mimelnk +@dirrm include/gcu/gcu +@dirrm include/gcu +@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime +@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime |