summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2016-08-11 14:25:15 -0400
committerBrian Evans <grknight@gentoo.org>2016-08-11 14:26:32 -0400
commit035bbc024415e995d8ffb968a547dc28ca1cccf8 (patch)
treedd5ae32f0c9b740c480b8d4c15151210431fb71f /www-apps/websvn
parentwww-apps/websvn: Non-maintainer security revision bump and EAPI cleanup (diff)
downloadgentoo-035bbc024415e995d8ffb968a547dc28ca1cccf8.tar.gz
gentoo-035bbc024415e995d8ffb968a547dc28ca1cccf8.tar.bz2
gentoo-035bbc024415e995d8ffb968a547dc28ca1cccf8.zip
www-apps/websvn: Drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'www-apps/websvn')
-rw-r--r--www-apps/websvn/websvn-2.3.3.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/www-apps/websvn/websvn-2.3.3.ebuild b/www-apps/websvn/websvn-2.3.3.ebuild
deleted file mode 100644
index f49970f6b98b..000000000000
--- a/www-apps/websvn/websvn-2.3.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit depend.php eutils webapp
-
-MY_P="${P//_/}"
-
-DESCRIPTION="Web-based browsing tool for Subversion (SVN) repositories in PHP"
-HOMEPAGE="http://www.websvn.info/ http://websvn.tigris.org/"
-DOWNLOAD_NUMBER="49056"
-SRC_URI="http://websvn.tigris.org/files/documents/1380/${DOWNLOAD_NUMBER}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-IUSE="enscript"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-
-DEPEND=""
-RDEPEND="dev-vcs/subversion
- enscript? ( app-text/enscript )"
-RESTRICT="mirror"
-
-need_httpd_cgi
-need_php_httpd
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- webapp_pkg_setup
- has_php
- require_php_with_use xml
-}
-
-src_install() {
- webapp_src_preinst
-
- mv include/{dist,}config.php
-
- dodoc changes.txt || die "dodoc failed"
- dohtml doc/* || die "dohtml failed"
- rm -rf license.txt changes.txt doc/
-
- insinto "${MY_HTDOCSDIR}"
- doins -r . || die "doins failed"
-
- webapp_configfile "${MY_HTDOCSDIR}"/include/config.php
- webapp_configfile "${MY_HTDOCSDIR}"/wsvn.php
-
- webapp_serverowned "${MY_HTDOCSDIR}"/cache
-
- webapp_src_install
-}