diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-11-23 00:18:13 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-11-23 00:18:13 +0000 |
commit | 683b265b2eda5ede22dcc9cc28aee7807e29a60c (patch) | |
tree | 8dc4dda6c091b62dd315f537dcd0589209b7c6e5 /net-www | |
parent | RESTRICT="nomirror" (diff) | |
download | gentoo-2-683b265b2eda5ede22dcc9cc28aee7807e29a60c.tar.gz gentoo-2-683b265b2eda5ede22dcc9cc28aee7807e29a60c.tar.bz2 gentoo-2-683b265b2eda5ede22dcc9cc28aee7807e29a60c.zip |
cleanup
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/phpBB/Manifest | 2 | ||||
-rw-r--r-- | net-www/phpBB/files/digest-phpBB-2.0.6 | 1 | ||||
-rw-r--r-- | net-www/phpBB/phpBB-2.0.6.ebuild | 49 |
3 files changed, 0 insertions, 52 deletions
diff --git a/net-www/phpBB/Manifest b/net-www/phpBB/Manifest index a221a39deeec..7a3e646c38e9 100644 --- a/net-www/phpBB/Manifest +++ b/net-www/phpBB/Manifest @@ -1,6 +1,4 @@ MD5 4a3a42d5c6db73a56f9bdc10165b33f7 phpBB-2.0.6-r1.ebuild 1324 MD5 32f76e7335c14cc9dda33b3feabb8273 ChangeLog 929 -MD5 330aa4f4cdf42fdddd40781253de4f9b phpBB-2.0.6.ebuild 1328 -MD5 d8c04c96ab7db9b65effac516a92b8ae files/digest-phpBB-2.0.6 63 MD5 d8c04c96ab7db9b65effac516a92b8ae files/digest-phpBB-2.0.6-r1 63 MD5 dd352cf51cdca8cd8b7275b2bad5a427 files/phpBB-2.0.6-security.patch 4003 diff --git a/net-www/phpBB/files/digest-phpBB-2.0.6 b/net-www/phpBB/files/digest-phpBB-2.0.6 deleted file mode 100644 index 686427c8dabf..000000000000 --- a/net-www/phpBB/files/digest-phpBB-2.0.6 +++ /dev/null @@ -1 +0,0 @@ -MD5 9fcaa3148203159db03947998a3cba9d phpBB-2.0.6.tar.gz 544080 diff --git a/net-www/phpBB/phpBB-2.0.6.ebuild b/net-www/phpBB/phpBB-2.0.6.ebuild deleted file mode 100644 index 4632d6dac817..000000000000 --- a/net-www/phpBB/phpBB-2.0.6.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# Maintainer: Tim Raedisch <tim.raedisch@udo.edu> -# $Header: /var/cvsroot/gentoo-x86/net-www/phpBB/phpBB-2.0.6.ebuild,v 1.5 2003/11/23 00:17:25 mholzer Exp $ - -S=${WORKDIR}/${PN}2 -DESCRIPTION="phpBB is a high powered, fully scalable, and highly customisable open-source bulletin board package." -HOMEPAGE="http://www.phpbb.com/" -SRC_URI="mirror://sourceforge/phpbb/${P}.tar.gz" -RESTRICT="nomirror" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86 ~ppc ~sparc ~alpha" - -DEPEND="virtual/php" - -inherit webapp-apache -webapp-detect || NO_WEBSERVER=1 - -pkg_setup() { - webapp-pkg_setup "${NO_WEBSERVER}" - - if [ -d ${HTTPD_ROOT}/phpbb ] ; then - ewarn "You need to unmerge your old phpBB version first." - ewarn "phpBB will be installed into ${HTTPD_ROOT}/phpbb" - ewarn "directly instead of a version-dependant directory." - die "need to unmerge old version first" - fi - - einfo "Installing for ${WEBAPP_SERVER}" -} - -src_compile() { - #we need to have this empty function ... default compile hangs - echo "Nothing to compile" -} - -src_install() { - cd ${S} - dodir "${HTTPD_ROOT}/phpbb" - cp -a * "${D}/${HTTPD_ROOT}/phpbb" - dodoc ${S}/docs/* - - cd "${D}/${HTTPD_ROOT}" - chown -R "${HTTPD_USER}.${HTTPD_GROUP}" "${D}/${HTTPD_ROOT}/phpbb" -} - - |