summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-01-28 22:08:14 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-01-28 22:08:14 +0000
commitc9bbe57b0e1c31cde10b32c5e9787ff8a1a22a2e (patch)
treef4a41ff6bf61ab2dba8833f00bffa6a85096aafc /app-misc
parentVersion bump (diff)
downloadhistorical-c9bbe57b0e1c31cde10b32c5e9787ff8a1a22a2e.tar.gz
historical-c9bbe57b0e1c31cde10b32c5e9787ff8a1a22a2e.tar.bz2
historical-c9bbe57b0e1c31cde10b32c5e9787ff8a1a22a2e.zip
Version bumped.
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/gallery/ChangeLog8
-rw-r--r--app-misc/gallery/files/digest-gallery-1.3.31
-rw-r--r--app-misc/gallery/gallery-1.3.3.ebuild88
3 files changed, 95 insertions, 2 deletions
diff --git a/app-misc/gallery/ChangeLog b/app-misc/gallery/ChangeLog
index 1863af80ac4f..54126d14581e 100644
--- a/app-misc/gallery/ChangeLog
+++ b/app-misc/gallery/ChangeLog
@@ -1,8 +1,12 @@
# ChangeLog for app-misc/gallery
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-misc/gallery/ChangeLog,v 1.3 2002/12/13 10:56:13 blizzy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/gallery/ChangeLog,v 1.4 2003/01/28 22:08:07 mholzer Exp $
- 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
+*gallery-1.3.3 (28 Jan 2003)
+
+ 28 Jan 2003; Martin Holzer <mholzer@gentoo.org> gallery-1.3.3.ebuild
+ files/digest-gallery-1.3.3 ChangeLog :
+ Version bumped. Submitted in #13993.
*gallery-1.3.1 (14 Nov 2002)
diff --git a/app-misc/gallery/files/digest-gallery-1.3.3 b/app-misc/gallery/files/digest-gallery-1.3.3
new file mode 100644
index 000000000000..c7e75abb08da
--- /dev/null
+++ b/app-misc/gallery/files/digest-gallery-1.3.3
@@ -0,0 +1 @@
+MD5 3929f61d08a39101149aab3f5946b98d gallery-1.3.3.tar.gz 182931
diff --git a/app-misc/gallery/gallery-1.3.3.ebuild b/app-misc/gallery/gallery-1.3.3.ebuild
new file mode 100644
index 000000000000..9d6dd9e6a341
--- /dev/null
+++ b/app-misc/gallery/gallery-1.3.3.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/gallery/gallery-1.3.3.ebuild,v 1.1 2003/01/28 22:08:14 mholzer Exp $
+
+DESCRIPTION="Web based (PHP Script) photo album viewer/creator."
+HOMEPAGE="http://gallery.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+KEYWORDS="~x86 ~ppc ~sparc ~alpha"
+DEPEND=">=net-www/apache-1.3.24-r1
+ >=dev-php/mod_php-4.1.2-r5
+ >=media-gfx/jhead-1.6
+ >=media-gfx/imagemagick-5.4.9.1-r1"
+
+S="${WORKDIR}/${PN}"
+DST_PATH="/home/httpd/htdocs/gallery"
+
+src_install() {
+ insinto ${DST_PATH}
+ doins *.{php,sh}
+
+ insinto ${DST_PATH}/classes
+ doins classes/*.php
+
+ insinto ${DST_PATH}/classes/database/mysql
+ doins classes/database/mysql/*.php
+
+ insinto ${DST_PATH}/classes/gallery
+ doins classes/gallery/*.php
+
+ insinto ${DST_PATH}/classes/nuke5
+ doins classes/nuke5/*.php
+
+ insinto ${DST_PATH}/classes/postnuke
+ doins classes/postnuke/*.php
+
+ insinto ${DST_PATH}/classes/postnuke0.7.1
+ doins classes/postnuke0.7.1/*.php
+
+ insinto ${DST_PATH}/css
+ doins css/*.default
+
+ insinto ${DST_PATH}/errors
+ doins errors/*.php
+
+ insinto ${DST_PATH}/html
+ doins html/*.inc
+
+ insinto ${DST_PATH}/html_wrap
+ doins html_wrap/*.default
+
+ insinto ${DST_PATH}/images
+ doins images/*.{jpg,gif,png}
+
+ insinto ${DST_PATH}/java
+ doins java/*.jar
+
+ insinto ${DST_PATH}/js
+ doins js/*.js
+
+ insinto ${DST_PATH}/layout
+ doins layout/*.inc
+
+ insinto ${DST_PATH}/platform
+ doins platform/*.php
+
+ insinto ${DST_PATH}/setup
+ doins setup/*.{php,inc,template,txt} setup/.htaccess
+
+ dodoc AUTHORS ChangeLog README LICENSE.txt todo UPGRADING
+}
+
+
+pkg_postinst() {
+ chown -R apache.apache ${DST_PATH}
+ chown root.root ${DST_PATH}/secure.sh ${DST_PATH}/configure.sh
+ chmod 700 ${DST_PATH}/secure.sh ${DST_PATH}/configure.sh
+
+ einfo
+ einfo "For new installations point your browser to http://www.yourhost.com/gallery/setup/"
+ einfo "and follow the instructions."
+ einfo "-----------------------------------------------------------------------------------"
+ einfo "For upgrades, just run # /home/httpd/gallery/secure.sh"
+ einfo
+}
+