summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenedikt Boehm <hollow@gentoo.org>2007-09-21 20:35:11 +0000
committerBenedikt Boehm <hollow@gentoo.org>2007-09-21 20:35:11 +0000
commit4afefc321a908e357c088bd10bd89ed4eb5e32a9 (patch)
tree1a97fe8f7b92b2e6790297dbc84c2f6e97696556 /www-apache/mod_ftpd/mod_ftpd-0.13.1.ebuild
parentApply the FBSD fix on 2.14 too.. (diff)
downloadgentoo-2-4afefc321a908e357c088bd10bd89ed4eb5e32a9.tar.gz
gentoo-2-4afefc321a908e357c088bd10bd89ed4eb5e32a9.tar.bz2
gentoo-2-4afefc321a908e357c088bd10bd89ed4eb5e32a9.zip
fix #192862, cleanup
(Portage version: 2.1.3.9)
Diffstat (limited to 'www-apache/mod_ftpd/mod_ftpd-0.13.1.ebuild')
-rw-r--r--www-apache/mod_ftpd/mod_ftpd-0.13.1.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/www-apache/mod_ftpd/mod_ftpd-0.13.1.ebuild b/www-apache/mod_ftpd/mod_ftpd-0.13.1.ebuild
deleted file mode 100644
index 563f5696c098..000000000000
--- a/www-apache/mod_ftpd/mod_ftpd-0.13.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_ftpd/mod_ftpd-0.13.1.ebuild,v 1.1 2007/07/29 14:24:52 phreak Exp $
-
-inherit apache-module
-
-KEYWORDS="~ppc ~x86"
-
-DESCRIPTION="Apache2 module which provides an FTP server."
-HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_ftpd/"
-SRC_URI="http://www.outoforder.cc/downloads/${PN}/${P}.tar.bz2"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="dbi gdbm"
-
-DEPEND="dbi? ( dev-db/libdbi )
- gdbm? ( sys-libs/gdbm )"
-RDEPEND="${DEPEND}"
-
-APACHE2_EXECFILES="providers/*/.libs/*.so"
-APACHE2_MOD_CONF="45_${PN}"
-APACHE2_MOD_DEFINE="FTPD"
-
-DOCFILES="docs/manual.html AUTHORS ChangeLog NOTICE README TODO"
-
-need_apache2
-
-src_compile() {
- local providers="default fail"
-
- use dbi && providers="dbi ${providers}"
- use gdbm && providers="dbm ${providers}"
-
- econf \
- --with-apxs=${APXS2} \
- --enable-providers="${providers}" \
- || die "econf failed"
- emake || die "emake failed"
-}