# ChangeLog for dev-cpp/gconfmm
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/ChangeLog,v 1.49 2007/02/16 21:37:45 compnerd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/ChangeLog,v 1.50 2007/03/28 00:54:27 dang Exp $
+
+*gconfmm-2.18.0 (28 Mar 2007)
+
+ 28 Mar 2007; Daniel Gryniewicz <dang@gentoo.org> +gconfmm-2.18.0.ebuild:
+ gnome 2.18.0
16 Feb 2007; Saleem Abdulrasool <compnerd@gentoo.org>
gconfmm-2.16.0.ebuild:
--- /dev/null
+MD5 0771dde14af1443f9ac142010eb3d403 gconfmm-2.18.0.tar.bz2 292484
+RMD160 d7cd82262e503ef476b2542467a183b4f313dcd3 gconfmm-2.18.0.tar.bz2 292484
+SHA256 0f82e951069395c28b86205233e2a061505544811448f1bd75a3ee76b44d9316 gconfmm-2.18.0.tar.bz2 292484
--- /dev/null
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/gconfmm-2.18.0.ebuild,v 1.1 2007/03/28 00:54:27 dang Exp $
+
+inherit gnome2 eutils
+
+DESCRIPTION="C++ bindings for GConf"
+HOMEPAGE="http://gtkmm.sourceforge.net/"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+IUSE="doc examples"
+
+RDEPEND=">=gnome-base/gconf-2.4
+ >=dev-cpp/glibmm-2.12
+ >=dev-cpp/gtkmm-2.4"
+
+DEPEND=">=dev-util/pkgconfig-0.12.0
+ ${RDEPEND}"
+
+DOCS="AUTHORS COPYING* ChangeLog NEWS README INSTALL"
+
+src_unpack() {
+ gnome2_src_unpack
+
+ if ! use examples; then
+ # don't waste time building the examples
+ sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \
+ die "sed Makefile.in failed"
+ fi
+}
+
+src_compile() {
+ gnome2_src_compile
+
+ if use doc; then
+ cd "${S}/docs/reference"
+ make all
+ fi
+}
+
+src_install() {
+ gnome2_src_install
+
+ if use doc ; then
+ dohtml -r docs/reference/html/* docs/images/*
+ fi
+
+ if use examples; then
+ find examples -type d -name '.deps' -exec rm -fr {} \; 2>/dev/null
+ cp -R examples ${D}/usr/share/doc/${PF}
+ fi
+}
# ChangeLog for dev-cpp/gnome-vfsmm
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/ChangeLog,v 1.41 2007/02/18 13:40:41 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/ChangeLog,v 1.42 2007/03/28 00:57:19 dang Exp $
+
+*gnome-vfsmm-2.18.0 (28 Mar 2007)
+
+ 28 Mar 2007; Daniel Gryniewicz <dang@gentoo.org>
+ +gnome-vfsmm-2.18.0.ebuild:
+ gnome 2.18.0
18 Feb 2007; Bryan Østergaard <kloeri@gentoo.org>
gnome-vfsmm-2.16.0.ebuild:
--- /dev/null
+MD5 1c5c0ef2ffcf52e682375fa11facebbf gnome-vfsmm-2.18.0.tar.bz2 345525
+RMD160 1a3c54186aa286054251f7624976e17627936c07 gnome-vfsmm-2.18.0.tar.bz2 345525
+SHA256 fd9a083db7d631666df2872e5d3b0a236e3116f417ee5fc116d64e0082f363a6 gnome-vfsmm-2.18.0.tar.bz2 345525
--- /dev/null
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.18.0.ebuild,v 1.1 2007/03/28 00:57:19 dang Exp $
+
+inherit gnome2
+
+DESCRIPTION="C++ bindings for gnome-vfs"
+HOMEPAGE="http://gtkmm.sourceforge.net/"
+
+LICENSE="LGPL-2.1"
+SLOT="1.1"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+IUSE="doc examples"
+
+# glibmm dep is because build fails with older versions...
+RDEPEND=">=gnome-base/gnome-vfs-2.8.1
+ >=dev-cpp/glibmm-2.12"
+DEPEND=">=dev-util/pkgconfig-0.12.0
+ ${RDEPEND}"
+
+DOCS="AUTHORS ChangeLog NEWS README INSTALL"
+
+src_unpack() {
+ gnome2_src_unpack
+
+ if ! use examples; then
+ # don't waste time building the examples
+ sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \
+ die "sed Makefile.in failed"
+ fi
+}
+
+src_compile() {
+ gnome2_src_compile
+
+ if use doc; then
+ cd "${S}"/docs/reference
+ make all
+ fi
+}
+
+src_install() {
+ gnome2_src_install
+
+ if use doc ; then
+ dohtml -r docs/reference/html/* docs/images/*
+ fi
+
+ if use examples; then
+ find examples -type d -name '.deps' -exec rm -fr {} \; 2>/dev/null
+ cp -R examples "${D}"/usr/share/doc/${PF}
+ fi
+}
# ChangeLog for dev-cpp/libgnomemm
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomemm/ChangeLog,v 1.55 2007/02/21 16:16:05 dang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomemm/ChangeLog,v 1.56 2007/03/28 01:00:56 dang Exp $
+
+*libgnomemm-2.18.0 (28 Mar 2007)
+
+ 28 Mar 2007; Daniel Gryniewicz <dang@gentoo.org>
+ +libgnomemm-2.18.0.ebuild:
+ gnome 2.18.0
21 Feb 2007; Daniel Gryniewicz <dang@gentoo.org>
files/digest-libgnomemm-2.10.0, Manifest:
--- /dev/null
+MD5 da6d481fc4a7fb0084d0e48f5c182112 libgnomemm-2.18.0.tar.bz2 252070
+RMD160 b8aefe712cf045c32aee34d2599eef402dff4116 libgnomemm-2.18.0.tar.bz2 252070
+SHA256 043a9bedcc55296981934acf19ecfb428bdc1710baaed6c82470ea38f7bca182 libgnomemm-2.18.0.tar.bz2 252070
--- /dev/null
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomemm/libgnomemm-2.18.0.ebuild,v 1.1 2007/03/28 01:00:56 dang Exp $
+
+inherit gnome2
+
+DESCRIPTION="C++ bindings for libgnome"
+HOMEPAGE="http://gtkmm.sourceforge.net/"
+
+LICENSE="LGPL-2.1"
+SLOT="2.6"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=dev-cpp/gtkmm-2.8
+ >=gnome-base/libgnome-2.6"
+DEPEND=">=dev-util/pkgconfig-0.12.0
+ ${RDEPEND}"
+
+DOCS="AUTHORS ChangeLog NEWS README TODO"
# ChangeLog for dev-cpp/libgnomeuimm
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomeuimm/ChangeLog,v 1.45 2007/02/21 16:18:42 dang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomeuimm/ChangeLog,v 1.46 2007/03/28 01:04:18 dang Exp $
+
+*libgnomeuimm-2.18.0 (28 Mar 2007)
+
+ 28 Mar 2007; Daniel Gryniewicz <dang@gentoo.org>
+ +libgnomeuimm-2.18.0.ebuild:
+ gnome 2.18.0
21 Feb 2007; Daniel Gryniewicz <dang@gentoo.org>
files/digest-libgnomeuimm-2.10.0, Manifest:
--- /dev/null
+MD5 ba42d820f535f8e7fc5d31699d484efb libgnomeuimm-2.18.0.tar.bz2 349549
+RMD160 c318886ac89fd461990c637615b9e6488f5425e8 libgnomeuimm-2.18.0.tar.bz2 349549
+SHA256 70638f28a4cc6504b9e39a1f80118dacaa029454510a1ae113dc861a665897cc libgnomeuimm-2.18.0.tar.bz2 349549
--- /dev/null
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomeuimm/libgnomeuimm-2.18.0.ebuild,v 1.1 2007/03/28 01:04:18 dang Exp $
+
+inherit gnome2 eutils
+
+DESCRIPTION="C++ bindings for libgnomeui"
+HOMEPAGE="http://gtkmm.sourceforge.net/"
+
+LICENSE="LGPL-2.1"
+SLOT="2.6"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=gnome-base/libgnomeui-2.7.1
+ >=dev-cpp/libgnomemm-2.14.0
+ >=dev-cpp/libgnomecanvasmm-2.6
+ >=dev-cpp/gconfmm-2.6
+ >=dev-cpp/libglademm-2.4
+ >=dev-cpp/gnome-vfsmm-2.6"
+
+DEPEND=">=dev-util/pkgconfig-0.12.0
+ ${RDEPEND}"
+
+DOCS="AUTHORS ChangeLog NEWS INSTALL TODO"