summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-02-20 18:49:31 +0100
committerPacho Ramos <pacho@gentoo.org>2016-02-20 18:51:06 +0100
commit760e17fcbac1b8c04a96ab08306dbcc644131dfb (patch)
treee89f1b472226b0439a5a08e98af7fca11f0e892c /www-apps
parentsys-fs/pytagsfs: distutils-r1 + EAPI 5 (diff)
downloadgentoo-760e17fcbac1b8c04a96ab08306dbcc644131dfb.tar.gz
gentoo-760e17fcbac1b8c04a96ab08306dbcc644131dfb.tar.bz2
gentoo-760e17fcbac1b8c04a96ab08306dbcc644131dfb.zip
Remove masked for removal packages
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/gallery/Manifest2
-rw-r--r--www-apps/gallery/files/postinstall-en.txt24
-rw-r--r--www-apps/gallery/files/postinstall-en2.txt27
-rw-r--r--www-apps/gallery/files/postupgrade-en.txt19
-rw-r--r--www-apps/gallery/gallery-2.3.2.ebuild61
-rw-r--r--www-apps/gallery/gallery-3.0.9.ebuild86
-rw-r--r--www-apps/gallery/metadata.xml32
7 files changed, 0 insertions, 251 deletions
diff --git a/www-apps/gallery/Manifest b/www-apps/gallery/Manifest
deleted file mode 100644
index 9802eee27363..000000000000
--- a/www-apps/gallery/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST gallery-2.3.2-full.tar.gz 14569436 SHA256 810ed73c456a3299ba50d9fcca6725d0654641c078c9d7c278d4875bad2af3fc SHA512 e4ee2007018ecdc6df2cb715798f57a94d2fcf5618a06812d704b45ba398cc9f52465d4ea1d830f2b99611c85d8853d7639059b3761f3b5d77ccc16d1e4ae0ad WHIRLPOOL 4591f8d69d173f01108fec5c21c7bde3f519c44177ef268866031e0c1cc021c452415b73950011e2f1cd46ee314d2741260bcd4ba80bdee56ca5b119a2452975
-DIST gallery-3.0.9.zip 2065722 SHA256 62d86c3a7252b25a17eead54a2b918bfdaac19d43f81132b73dcc735fdf20f74 SHA512 fd6f15abe69b4e80c1e3c24379e123fb2352cd7b0416e5a3aaedb857c32ff2412fc3eabba90e3227a8c3b0d1d27eedcf9a6e10c81b8dac8037f7019730b5fe89 WHIRLPOOL 75d61ab75449557a4d8a0d43ce3bcf315eed28db0fc8ec57ad2e560f0e80c3ab5df4a8a7f709abcff14baa52e85a814f1d0b7a83a21e241f1aa8d13ad7770df2
diff --git a/www-apps/gallery/files/postinstall-en.txt b/www-apps/gallery/files/postinstall-en.txt
deleted file mode 100644
index 96b52684b59e..000000000000
--- a/www-apps/gallery/files/postinstall-en.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-For new installations:
-
-1. Install the webapp using
-
- webapp-config -h <VHOST_HOSTNAME> -d <VHOST_APPDIR> -I gallery X.Y.Z
-
-where either the VHOST_HOSTNAME or VHOST_APPDIR are optional and X.Y.Z
-is the version of gallery you just emerged.
-
-2. Create a mysql database for Gallery 3.
-
- mysqladmin -u root -p create gallery3
- mysql gallery3 -u root -p -e \
- "GRANT ALL ON gallery3.* TO username@localhost IDENTIFIED BY 'password'"
-
-3. Now browse to http://<VHOST_HOSTNAME>/<VHOST_APPDIR>/installer. Make sure
-the database name, user and password match what you created in step 2.
-
-4. Enjoy!
-
-
-The Gallery 3 user's guide can be found at
-
- http://codex.galleryproject.org/Gallery3:User_guide:Gallery3:Installing_and_upgrading#Upgrading
diff --git a/www-apps/gallery/files/postinstall-en2.txt b/www-apps/gallery/files/postinstall-en2.txt
deleted file mode 100644
index bcc977036752..000000000000
--- a/www-apps/gallery/files/postinstall-en2.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-For new installations:
-
-1. Create a directory to share photos and make it writeable by the web server.
-
-2. Create a database for Gallery 2.
- MySQL: mysqladmin -uroot create gallery2
- mysql gallery2 -uroot -e"GRANT ALL ON gallery2.* TO
- username@localhost IDENTIFIED BY 'password'"
- PostgreSQL: createdb gallery2 -E UNICODE
- if that doesn't work, try
- createdb gallery2 -E SQL_ASCII
- if that doesn't work either, try
- createdb gallery2
-
-3. Now browse to http://${VHOST_HOSTNAME}/${VHOST_APPDIR}/install
-
-NOTE: The installer may complain that FfmpegToolkit.class has been modified.
-This is normal, as we patch it to fix a bug with newer versions of ffmpeg.
-
-For upgrades:
-
-1. Copy over your config.php and the g2data directory.
-
-2. If you are using a PHP accelerator, flush its cache.
-
-3. Browse to http://${VHOST_HOSTNAME}/${VHOST_APPDIR}/upgrade and follow the
- instructions.
diff --git a/www-apps/gallery/files/postupgrade-en.txt b/www-apps/gallery/files/postupgrade-en.txt
deleted file mode 100644
index 2d41eb21f0e0..000000000000
--- a/www-apps/gallery/files/postupgrade-en.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-To upgreade:
-
-1. Upgrade the webapp using
-
- webapp-config -h <VHOST_HOSTNAME> -d <VHOST_APPDIR> -U gallery X.Y.Z
-
-2. Direct your browser to
-
- http://<VHOST_HOSTNAME>/<VHOST_APPDIR>/index.php/upgrader
-
-or alternatively, at a shell prompt, run
-
- php index.php upgrade
-
-3. Enjoy!
-
-The Gallery 3 user's guide can be found at
-
- http://codex.galleryproject.org/Gallery3:User_guide:Gallery3:Installing_and_upgrading#Upgrading
diff --git a/www-apps/gallery/gallery-2.3.2.ebuild b/www-apps/gallery/gallery-2.3.2.ebuild
deleted file mode 100644
index a3b12868d005..000000000000
--- a/www-apps/gallery/gallery-2.3.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit webapp eutils depend.php confutils
-
-DESCRIPTION="Web based (PHP Script) photo album viewer/creator"
-HOMEPAGE="http://galleryproject.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 hppa ppc ppc64 x86"
-IUSE="ffmpeg +gd imagemagick +mysql netpbm postgres raw sqlite unzip zip"
-
-RDEPEND="raw? ( media-gfx/dcraw )
- ffmpeg? ( virtual/ffmpeg )
- imagemagick? ( || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) )
- netpbm? ( media-libs/netpbm media-gfx/jhead )
- unzip? ( app-arch/unzip )
- zip? ( app-arch/zip )
- sqlite? ( dev-lang/php[pdo] dev-lang/php[sqlite] )
- mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) )
- dev-lang/php[session,postgres?,gd?]
- virtual/httpd-php"
-
-S=${WORKDIR}/${PN}2
-
-need_httpd_cgi
-
-pkg_setup() {
- webapp_pkg_setup
- confutils_require_any gd imagemagick netpbm
- confutils_require_any mysql postgres sqlite
-}
-
-src_install() {
- webapp_src_preinst
-
- dohtml README.html
- rm README.html LICENSE
- sed -i -e "/^LICENSE\>/d" -e "/^README\.html\>/d" MANIFEST
-
- insinto "${MY_HTDOCSDIR}"
- doins -r .
-
- webapp_postinst_txt en "${FILESDIR}/postinstall-en2.txt"
- webapp_src_install
-}
-
-pkg_postinst() {
- elog "You are strongly encouraged to back up your database"
- elog "and the g2data directory, as upgrading may make"
- elog "irreversible changes to both."
- elog
- elog "g2data dir: cp -Rf /path/to/g2data/ /path/to/backup"
- elog "mysql: mysqldump --opt -u username -h hostname -p database > /path/to/backup.sql"
- elog "postgres: pg_dump -h hostname --format=t database > /path/to/backup.sql"
- webapp_pkg_postinst
-}
diff --git a/www-apps/gallery/gallery-3.0.9.ebuild b/www-apps/gallery/gallery-3.0.9.ebuild
deleted file mode 100644
index c4bd59fa8180..000000000000
--- a/www-apps/gallery/gallery-3.0.9.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit webapp
-
-DESCRIPTION="Web based (PHP Script) photo album viewer/creator"
-HOMEPAGE="http://gallery.menalto.com/"
-SRC_URI="mirror://sourceforge/gallery/${PN}/${P}.zip"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 hppa ppc ppc64 x86"
-IUSE="ffmpeg +gd imagemagick mysql mysqli"
-
-# Build depend is on unzip
-DEPEND="app-arch/unzip"
-
-#PHP flags
-PHP_REQUIRED_FLAGS="ctype,filter,iconv,json,simplexml,tokenizer,unicode"
-PHP_OPTIONAL_FLAGS="gd?,mysql?,mysqli?"
-
-# No forced dependency on
-# mysql? ( virtual/mysql )
-# which may live on another server
-RDEPEND="
- imagemagick? ( || (
- media-gfx/imagemagick
- media-gfx/graphicsmagick[imagemagick]
- ) )
- ffmpeg? ( virtual/ffmpeg )
- >=dev-lang/php-5.2.3[${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}]
- virtual/httpd-php"
-
-REQUIRED_USE="
- || ( gd imagemagick )
- || ( mysql mysqli )"
-
-S="${WORKDIR}/${PN}3"
-
-src_install() {
- webapp_src_preinst
-
- rm LICENSE
- insinto "${MY_HTDOCSDIR}"
- doins -r .
-
- keepdir "${MY_HTDOCSDIR}"/var
- webapp_serverowned "${MY_HTDOCSDIR}"/var
-
- webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
- webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
-
- webapp_src_install
-}
-
-pkg_postinst() {
- ewarn
- ewarn "\033[1;33m**************************************************\033[00m"
- ewarn
- ewarn "gallery3 requires short_open_tag to be enabled."
- ewarn "You need to edit \"/etc/php/apache2-php5.?/php.ini\","
- ewarn "set short_open_tag to \"On\" and then restart apache."
- ewarn
- ewarn "This ebuild does not depend on mysql or mariadb,"
- ewarn "because the database may run on different host. But"
- ewarn "you will need to run a database server somewhere."
- ewarn
- ewarn "\033[1;33m**************************************************\033[00m"
- ewarn
-
- einfo
- einfo "\033[1;32m**************************************************\033[00m"
- einfo
- einfo "To see the post install instructions, do"
- einfo
- einfo " webapp-config --show-postinst ${PN} ${PVR}"
- einfo
- einfo "or for the post upgrade instructions, do"
- einfo
- einfo " webapp-config --show-postupgrade ${PN} ${PVR}"
- einfo
- einfo "\033[1;32m**************************************************\033[00m"
- einfo
-}
diff --git a/www-apps/gallery/metadata.xml b/www-apps/gallery/metadata.xml
deleted file mode 100644
index 66e8ef844e60..000000000000
--- a/www-apps/gallery/metadata.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>blueness@gentoo.org</email>
- <name>Anthony G. Basile</name>
- </maintainer>
- <maintainer type="project">
- <email>web-apps@gentoo.org</email>
- <name>Gentoo Webapps</name>
- </maintainer>
- <use>
- <flag name="netpbm">Add <pkg>media-libs/netpbm</pkg> support</flag>
- <flag name="unzip">Add <pkg>app-arch/unzip</pkg> support for the archive
- upload module</flag>
- <flag name="zip">Add <pkg>app-arch/zip</pkg> for the zip download
- module</flag>
- </use>
- <longdescription>
- Gallery is a web based software product that lets you manage your photos on
- your own website. With Gallery you can easily create and maintain albums of
- photos via an intuitive interface. Photo management includes automatic
- thumbnail creation, image resizing, rotation, ordering, captioning,
- searching and more. Albums and photos can have view, edit, delete and other
- permissions per individual authenticated user for an additional level of
- privacy. It's great for communities - give accounts to your friends and
- family and let them upload and manage their own photos on your website!
- </longdescription>
- <upstream>
- <remote-id type="sourceforge">gallery</remote-id>
- </upstream>
-</pkgmetadata>