diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2004-07-16 00:41:52 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2004-07-16 00:41:52 +0000 |
commit | 6c90ca6e5214c8ec3418f98aea1385f68c8fc0e2 (patch) | |
tree | 5460dc5b76655c4f736687d18eb41d956cfda120 /dev-python/wxpython-docs | |
parent | New ebuildy goodness (diff) | |
download | historical-6c90ca6e5214c8ec3418f98aea1385f68c8fc0e2.tar.gz historical-6c90ca6e5214c8ec3418f98aea1385f68c8fc0e2.tar.bz2 historical-6c90ca6e5214c8ec3418f98aea1385f68c8fc0e2.zip |
Fixed DOCDIR. Closes bug# 57237
Diffstat (limited to 'dev-python/wxpython-docs')
-rw-r--r-- | dev-python/wxpython-docs/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/wxpython-docs/Manifest | 6 | ||||
-rw-r--r-- | dev-python/wxpython-docs/wxpython-docs-2.4.2.4.ebuild | 10 |
3 files changed, 13 insertions, 9 deletions
diff --git a/dev-python/wxpython-docs/ChangeLog b/dev-python/wxpython-docs/ChangeLog index 7a8228c8db9f..5750cea60a71 100644 --- a/dev-python/wxpython-docs/ChangeLog +++ b/dev-python/wxpython-docs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/wxpython-docs # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython-docs/ChangeLog,v 1.5 2004/07/03 11:56:15 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython-docs/ChangeLog,v 1.6 2004/07/16 00:41:52 pythonhead Exp $ + + 15 Jul 2004; Rob Cakebread <pythonhead@gentoo.org> + wxpython-docs-2.4.2.4.ebuild: + Fixed DOCDIR. Closes bug# 57237 03 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> wxpython-docs-2.4.0.7.ebuild, wxpython-docs-2.4.1.2.ebuild, diff --git a/dev-python/wxpython-docs/Manifest b/dev-python/wxpython-docs/Manifest index f7c991ac6b89..14573ce919cb 100644 --- a/dev-python/wxpython-docs/Manifest +++ b/dev-python/wxpython-docs/Manifest @@ -1,8 +1,8 @@ -MD5 1ab39bcddeb43a9ad009847b561f8931 wxpython-docs-2.4.1.2.ebuild 675 -MD5 785314f58f94cc84ee0f60344e751340 wxpython-docs-2.4.2.4.ebuild 675 -MD5 72de3b4cffd5a8fea1b84c10b7ffebde ChangeLog 940 +MD5 d7be1e475d1eb01e54c88153569e6e62 ChangeLog 1064 MD5 3b06f1e87549af51d78bb7bfa33728b5 metadata.xml 182 MD5 3fccd83707e878a2477a25ef477750af wxpython-docs-2.4.0.7.ebuild 674 +MD5 1ab39bcddeb43a9ad009847b561f8931 wxpython-docs-2.4.1.2.ebuild 675 +MD5 d2770ce1590466d7dc31499797c87140 wxpython-docs-2.4.2.4.ebuild 678 MD5 52f0f1eee85a5d6f1988758ac11c7a71 files/digest-wxpython-docs-2.4.0.7 73 MD5 faca6b36631fc49721584435a37f2ee6 files/digest-wxpython-docs-2.4.1.2 73 MD5 b0fe04f82390f60887781f76d1ebbff2 files/digest-wxpython-docs-2.4.2.4 73 diff --git a/dev-python/wxpython-docs/wxpython-docs-2.4.2.4.ebuild b/dev-python/wxpython-docs/wxpython-docs-2.4.2.4.ebuild index 40114242e1a5..6489926ed4d8 100644 --- a/dev-python/wxpython-docs/wxpython-docs-2.4.2.4.ebuild +++ b/dev-python/wxpython-docs/wxpython-docs-2.4.2.4.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython-docs/wxpython-docs-2.4.2.4.ebuild,v 1.4 2004/07/03 12:32:27 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython-docs/wxpython-docs-2.4.2.4.ebuild,v 1.5 2004/07/16 00:41:52 pythonhead Exp $ MY_P="${P/wxpython-docs/wxPythonDocs}" + DESCRIPTION="wxPython documentation" HOMEPAGE="http://www.wxpython.org" SRC_URI="mirror://sourceforge/wxpython/${MY_P}.tar.gz" @@ -12,13 +13,12 @@ SLOT="0" KEYWORDS="~x86" IUSE="" -DEPEND="" - -S="${WORKDIR}/${MY_P}" -DOCDIR="wxpython-${PVR}" +S="${WORKDIR}/wxPython-${PVR}" +DOCDIR="wxPython-${PVR}" src_install() { dodir /usr/share/doc/${DOCDIR} dodir /usr/share/doc/${DOCDIR}/docs cp -R ${WORKDIR}/${DOCDIR}/docs/* ${D}/usr/share/doc/${DOCDIR}/docs/ } + |