diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2008-09-15 12:12:55 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2008-09-15 12:12:55 +0000 |
commit | 31672d95892a8250f5debba10a19d95afc49bfed (patch) | |
tree | 7393075d5110687f9eda0c8220603317cfb16144 /www-apps/gallery | |
parent | Complete fix for #234137. (diff) | |
download | gentoo-2-31672d95892a8250f5debba10a19d95afc49bfed.tar.gz gentoo-2-31672d95892a8250f5debba10a19d95afc49bfed.tar.bz2 gentoo-2-31672d95892a8250f5debba10a19d95afc49bfed.zip |
Fixed errors during install process (#234137).
(Portage version: 2.1.4.4)
Diffstat (limited to 'www-apps/gallery')
-rw-r--r-- | www-apps/gallery/ChangeLog | 5 | ||||
-rw-r--r-- | www-apps/gallery/gallery-1.5.8.ebuild | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/www-apps/gallery/ChangeLog b/www-apps/gallery/ChangeLog index cff65e56497d..0f43b7bbb355 100644 --- a/www-apps/gallery/ChangeLog +++ b/www-apps/gallery/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-apps/gallery # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.151 2008/09/11 20:12:12 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.152 2008/09/15 12:12:55 wrobel Exp $ + + 15 Sep 2008; wrobel@gentoo.org gallery-1.5.8.ebuild: + Fixed errors during install process (#234137). 11 Sep 2008; Markus Meier <maekke@gentoo.org> gallery-1.5.8.ebuild: amd64 stable, bug #234137 diff --git a/www-apps/gallery/gallery-1.5.8.ebuild b/www-apps/gallery/gallery-1.5.8.ebuild index 27116f35cfe9..7eae477653a0 100644 --- a/www-apps/gallery/gallery-1.5.8.ebuild +++ b/www-apps/gallery/gallery-1.5.8.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/www-apps/gallery/gallery-1.5.8.ebuild,v 1.5 2008/09/11 20:12:12 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-1.5.8.ebuild,v 1.6 2008/09/15 12:12:55 wrobel Exp $ inherit webapp depend.php confutils @@ -21,7 +21,7 @@ RDEPEND="media-libs/jpeg need_httpd_cgi need_php_httpd -S="${WORKDIR}"/${PN} +S="${WORKDIR}"/${P} pkg_setup() { webapp_pkg_setup @@ -40,10 +40,9 @@ src_install() { dodoc AUTHORS ChangeLog ChangeLog.archive README dohtml docs/* - rm -rf AUTHORS ChangeLog ChangeLog.archive README LICENSE.txt docs/ - insinto "${MY_HTDOCSDIR}" - doins -r . + cp -r . "${D}/${MY_HTDOCSDIR}" + rm -rf "${D}/${MY_HTDOCSDIR}"/{AUTHORS,ChangeLog,ChangeLog.archive,README,LICENSE.txt,docs/} webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt webapp_src_install |