diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-07-21 23:47:27 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-07-21 23:47:27 +0000 |
commit | 6fccc492ad9b0c07643a3356e19513fd98cd66b1 (patch) | |
tree | 602f36bfb961bf6da5f7b43c1cfc2fb12e9e7db5 /dev-cpp/libgdamm/libgdamm-1.3.6.ebuild | |
parent | move older gtkglextmm slots from 0 to 1.0. (diff) | |
download | gentoo-2-6fccc492ad9b0c07643a3356e19513fd98cd66b1.tar.gz gentoo-2-6fccc492ad9b0c07643a3356e19513fd98cd66b1.tar.bz2 gentoo-2-6fccc492ad9b0c07643a3356e19513fd98cd66b1.zip |
Initial commit for bug 63819.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-cpp/libgdamm/libgdamm-1.3.6.ebuild')
-rw-r--r-- | dev-cpp/libgdamm/libgdamm-1.3.6.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-cpp/libgdamm/libgdamm-1.3.6.ebuild b/dev-cpp/libgdamm/libgdamm-1.3.6.ebuild new file mode 100644 index 000000000000..c0baab15bacc --- /dev/null +++ b/dev-cpp/libgdamm/libgdamm-1.3.6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgdamm/libgdamm-1.3.6.ebuild,v 1.1 2005/07/21 23:47:27 ka0ttic Exp $ + +inherit gnome2 + +DESCRIPTION="C++ bindings for libgda" +HOMEPAGE="http://gtkmm.sourceforge.net/" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/libgdamm/${PV%.*}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="doc" + +RDEPEND=">=dev-cpp/glibmm-2.4 + >=gnome-extra/libgda-1.1.4" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +DOCS="AUTHORS ChangeLog README TODO" + +src_compile() { + gnome2_src_compile + + if use doc ; then + cd docs/reference + emake || die "failed to build API docs" + fi +} + +src_install() { + gnome2_src_install + use doc && dohtml -r docs/reference/html/* +} |