diff options
author | Rémi Cardona <remi@gentoo.org> | 2008-04-12 14:32:45 +0000 |
---|---|---|
committer | Rémi Cardona <remi@gentoo.org> | 2008-04-12 14:32:45 +0000 |
commit | 90315132fac51faa3d3494a69f1b233050f38385 (patch) | |
tree | e2e37e25a3a017de95e2c02306aef7ca8a7e0e49 /dev-cpp/gnome-vfsmm | |
parent | Stable on ppc wrt bug 217395 (diff) | |
download | gentoo-2-90315132fac51faa3d3494a69f1b233050f38385.tar.gz gentoo-2-90315132fac51faa3d3494a69f1b233050f38385.tar.bz2 gentoo-2-90315132fac51faa3d3494a69f1b233050f38385.zip |
dev-cpp/gnome-vfsmm: removing the forced dep on doxygen (fixes bug #213269)
(Portage version: 2.1.5_rc2)
Diffstat (limited to 'dev-cpp/gnome-vfsmm')
-rw-r--r-- | dev-cpp/gnome-vfsmm/ChangeLog | 5 | ||||
-rw-r--r-- | dev-cpp/gnome-vfsmm/gnome-vfsmm-2.22.0.ebuild | 19 |
2 files changed, 12 insertions, 12 deletions
diff --git a/dev-cpp/gnome-vfsmm/ChangeLog b/dev-cpp/gnome-vfsmm/ChangeLog index 758d960c88bd..5ff78573da41 100644 --- a/dev-cpp/gnome-vfsmm/ChangeLog +++ b/dev-cpp/gnome-vfsmm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-cpp/gnome-vfsmm # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/ChangeLog,v 1.54 2008/03/13 00:37:00 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/ChangeLog,v 1.55 2008/04/12 14:32:45 remi Exp $ + + 12 Apr 2008; Rémi Cardona <remi@gentoo.org> gnome-vfsmm-2.22.0.ebuild: + removing the forced dep on doxygen (fixes bug #213269) 13 Mar 2008; Gilles Dartiguelongue <eva@gentoo.org> gnome-vfsmm-2.22.0.ebuild: diff --git a/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.22.0.ebuild b/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.22.0.ebuild index 8a8a9030432c..9b65e5504885 100644 --- a/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.22.0.ebuild +++ b/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.22.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 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.22.0.ebuild,v 1.2 2008/03/13 00:37:00 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.22.0.ebuild,v 1.3 2008/04/12 14:32:45 remi Exp $ inherit gnome2 @@ -16,7 +16,7 @@ IUSE="doc examples" RDEPEND=">=gnome-base/gnome-vfs-2.8.1 >=dev-cpp/glibmm-2.12" DEPEND=">=dev-util/pkgconfig-0.12.0 - app-doc/doxygen + doc? ( app-doc/doxygen ) ${RDEPEND}" DOCS="AUTHORS ChangeLog NEWS README INSTALL" @@ -24,6 +24,12 @@ DOCS="AUTHORS ChangeLog NEWS README INSTALL" src_unpack() { gnome2_src_unpack + if ! use doc; then + # documentation requires Doxygen and takes time + sed -i 's/^\(SUBDIRS =.*\)docs\(.*\)$/\1\2/' Makefile.in || \ + die "sed Makefile.in failed" + fi + if ! use examples; then # don't waste time building the examples sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \ @@ -31,15 +37,6 @@ src_unpack() { fi } -src_compile() { - gnome2_src_compile - - if use doc; then - cd "${S}"/docs/reference - make all - fi -} - src_install() { gnome2_src_install |