diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2005-10-20 17:13:44 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2005-10-20 17:13:44 +0000 |
commit | a96e710beb5839ed9903c8aa43b73352d2a29527 (patch) | |
tree | fec1c25fb1050aeb9ba61edc01d9b39c20aac5de /dev-cpp/asio | |
parent | Version bump for security #105000. (diff) | |
download | gentoo-2-a96e710beb5839ed9903c8aa43b73352d2a29527.tar.gz gentoo-2-a96e710beb5839ed9903c8aa43b73352d2a29527.tar.bz2 gentoo-2-a96e710beb5839ed9903c8aa43b73352d2a29527.zip |
Added doc use flag
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'dev-cpp/asio')
-rw-r--r-- | dev-cpp/asio/ChangeLog | 5 | ||||
-rw-r--r-- | dev-cpp/asio/asio-0.3.4.ebuild | 11 |
2 files changed, 11 insertions, 5 deletions
diff --git a/dev-cpp/asio/ChangeLog b/dev-cpp/asio/ChangeLog index 54c80c408aab..59e23e418c93 100644 --- a/dev-cpp/asio/ChangeLog +++ b/dev-cpp/asio/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-cpp/asio # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.1 2005/10/16 07:57:39 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.2 2005/10/20 17:13:44 rphillips Exp $ + + 20 Oct 2005; <rphillips@gentoo.org> asio-0.3.4.ebuild: + Added doc use flag *asio-0.3.4 (16 Oct 2005) diff --git a/dev-cpp/asio/asio-0.3.4.ebuild b/dev-cpp/asio/asio-0.3.4.ebuild index 0fba6a301c86..170ecd030574 100644 --- a/dev-cpp/asio/asio-0.3.4.ebuild +++ b/dev-cpp/asio/asio-0.3.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-0.3.4.ebuild,v 1.1 2005/10/16 07:57:39 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-0.3.4.ebuild,v 1.2 2005/10/20 17:13:44 rphillips Exp $ DESCRIPTION="asynchronous network library" HOMEPAGE="http://asio.sourceforge.net/" @@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/asio/${P}.tar.bz2" LICENSE="Boost-1.0" SLOT="0" KEYWORDS="~x86" -IUSE="ssl" +IUSE="ssl doc" DEPEND=">=dev-libs/boost-1.33.0 app-doc/doxygen @@ -20,6 +20,9 @@ src_install() { einstall || die "install error" dodoc README COPYING INSTALL - dodir /usr/share/doc/${PF}/ - mv doc/* ${D}/usr/share/doc/${PF}/ + + if use doc; then + dodir /usr/share/doc/${PF}/ + mv doc/* ${D}/usr/share/doc/${PF}/ + fi } |