summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-cpp/asio')
-rw-r--r--dev-cpp/asio/ChangeLog5
-rw-r--r--dev-cpp/asio/Manifest4
-rw-r--r--dev-cpp/asio/asio-0.3.4.ebuild11
3 files changed, 13 insertions, 7 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/Manifest b/dev-cpp/asio/Manifest
index d0c462cfe132..01b1c8b6c1cd 100644
--- a/dev-cpp/asio/Manifest
+++ b/dev-cpp/asio/Manifest
@@ -1,4 +1,4 @@
-MD5 3909818a1a69a6a2eeb8b6f878950783 asio-0.3.4.ebuild 642
-MD5 a414a268d996fa0a7f5b3884da7d9ba0 ChangeLog 318
+MD5 200c4c9aab42595725ee6c01ee06428d asio-0.3.4.ebuild 671
+MD5 5a586873adac876b6bb0d9d3044a46d7 ChangeLog 397
MD5 c6481e888232c301a62acc17f6fecf9f metadata.xml 221
MD5 c2c56a660d96c4915fb2a3dea8881732 files/digest-asio-0.3.4 63
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
}