summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-01 23:15:17 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-02 07:18:56 +0100
commit40d37e97a4367499bfc5f4fbe7cefc640595cc8a (patch)
treee5ad1eab346745a115b9efaefdc383d7cba3aa59 /www-servers/boa
parentsys-fs/duperemove: Clean old up (diff)
downloadgentoo-40d37e97a4367499bfc5f4fbe7cefc640595cc8a.tar.gz
gentoo-40d37e97a4367499bfc5f4fbe7cefc640595cc8a.tar.bz2
gentoo-40d37e97a4367499bfc5f4fbe7cefc640595cc8a.zip
www-servers/boa: Clean old up
Diffstat (limited to 'www-servers/boa')
-rw-r--r--www-servers/boa/boa-0.94.14_rc21-r1.ebuild62
1 files changed, 0 insertions, 62 deletions
diff --git a/www-servers/boa/boa-0.94.14_rc21-r1.ebuild b/www-servers/boa/boa-0.94.14_rc21-r1.ebuild
deleted file mode 100644
index 1b0652fa298e..000000000000
--- a/www-servers/boa/boa-0.94.14_rc21-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils systemd
-
-MY_P=${P/_/}
-DESCRIPTION="A very small and very fast http daemon"
-SRC_URI="http://www.boa.org/${MY_P}.tar.gz"
-HOMEPAGE="http://www.boa.org/"
-
-KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND="sys-devel/bison
- sys-devel/flex
- doc? ( virtual/latex-base )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-texi.patch
- epatch "${FILESDIR}"/${P}-ENOSYS.patch
-}
-
-src_compile() {
- default
-
- use doc || sed -i -e '/^all:/s/boa.dvi //' docs/Makefile
- emake docs
-}
-
-src_install() {
- dosbin src/boa
- doman docs/boa.8
- doinfo docs/boa.info
- if use doc; then
- dodoc docs/boa.html
- dodoc docs/boa_banner.png
- dodoc docs/boa.dvi
- fi
-
- keepdir /var/log/boa
- keepdir /var/www/localhost/htdocs
- keepdir /var/www/localhost/cgi-bin
- keepdir /var/www/localhost/icons
-
- newinitd "${FILESDIR}"/boa.rc6 boa
- newconfd "${FILESDIR}"/boa.conf.d boa
-
- systemd_dounit "${FILESDIR}"/boa.service
-
- exeinto /usr/lib/boa
- doexe src/boa_indexer
-
- insinto /etc/boa
- doins "${FILESDIR}"/boa.conf
- doins "${FILESDIR}"/mime.types
-}