summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-03-28 23:05:16 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-03-28 23:05:16 +0000
commitfbcb754ddbc6441179ddc05d8d1f9d1e2c981fbf (patch)
treee15a1ac64af90634574cc9fa8fd01e96168344c5 /www-servers
parentRemove old. (diff)
downloadgentoo-2-fbcb754ddbc6441179ddc05d8d1f9d1e2c981fbf.tar.gz
gentoo-2-fbcb754ddbc6441179ddc05d8d1f9d1e2c981fbf.tar.bz2
gentoo-2-fbcb754ddbc6441179ddc05d8d1f9d1e2c981fbf.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'www-servers')
-rw-r--r--www-servers/gatling/ChangeLog8
-rw-r--r--www-servers/gatling/gatling-0.12-r1.ebuild57
-rw-r--r--www-servers/gatling/gatling-0.12.ebuild55
3 files changed, 6 insertions, 114 deletions
diff --git a/www-servers/gatling/ChangeLog b/www-servers/gatling/ChangeLog
index 16547600f249..7c509abeb941 100644
--- a/www-servers/gatling/ChangeLog
+++ b/www-servers/gatling/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-servers/gatling
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v 1.14 2014/01/08 06:08:34 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/ChangeLog,v 1.15 2015/03/28 23:05:16 mrueg Exp $
+
+ 28 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -gatling-0.12-r1.ebuild,
+ -gatling-0.12.ebuild:
+ Remove old.
08 Jan 2014; Mike Frysinger <vapier@gentoo.org> gatling-0.12-r1.ebuild,
gatling-0.12-r2.ebuild, gatling-0.12.ebuild, gatling-0.13.ebuild:
diff --git a/www-servers/gatling/gatling-0.12-r1.ebuild b/www-servers/gatling/gatling-0.12-r1.ebuild
deleted file mode 100644
index 07b6deeee755..000000000000
--- a/www-servers/gatling/gatling-0.12-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12-r1.ebuild,v 1.2 2014/01/08 06:08:34 vapier Exp $
-
-EAPI="4"
-
-inherit eutils toolchain-funcs user
-
-DESCRIPTION="High performance web server"
-HOMEPAGE="http://www.fefe.de/gatling/"
-SRC_URI="http://dl.fefe.de/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="ssl diet"
-
-DEPEND=">=dev-libs/libowfat-0.25
- diet? ( dev-libs/dietlibc )
- ssl? ( dev-libs/openssl )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- rm Makefile # leaves GNUmakefile
- epatch "${FILESDIR}/${P}-FLAGS.patch"
-}
-
-src_compile() {
- local diet_conf='DIET=env'
- use diet && diet_conf=
-
- local targets=gatling
- use ssl && targets+=' tlsgatling'
-
- emake CC="$(tc-getCC)" ${diet_conf} ${targets} \
- || die "emake ${targets} failed"
-}
-
-src_install() {
- doman gatling.1 || die "installing manpage failed"
-
- newconfd "${FILESDIR}/gatling.confd" gatling || die
- newinitd "${FILESDIR}/gatling.initd" gatling || die
- dodoc README.{ftp,http} || die "installing docs failed"
-
- dobin gatling || die "installing gatling binary failed"
- use ssl && {
- dobin tlsgatling || die "installing tlsgatling binary failed"
- }
-}
-
-pkg_setup() {
- ebegin "Creating gatling user and group"
- enewgroup gatling
- enewuser ${PN} -1 -1 /var/www/localhost ${PN}
-}
diff --git a/www-servers/gatling/gatling-0.12.ebuild b/www-servers/gatling/gatling-0.12.ebuild
deleted file mode 100644
index 171d2974d01c..000000000000
--- a/www-servers/gatling/gatling-0.12.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12.ebuild,v 1.4 2014/01/08 06:08:34 vapier Exp $
-
-inherit eutils user
-
-DESCRIPTION="High performance web server"
-HOMEPAGE="http://www.fefe.de/gatling/"
-SRC_URI="http://dl.fefe.de/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# We still have compile issues with USE=ssl, so it's commented out for now
-#IUSE="ssl"
-IUSE=""
-
-DEPEND=">=dev-libs/libowfat-0.25
- dev-libs/dietlibc"
- #ssl? ( dev-libs/openssl )
- #"
-RDEPEND=""
-
-src_unpack() {
- unpack $A
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-FLAGS.patch"
-}
-
-src_compile() {
- # FIX ME
- #if use ssl; then
- # emake tlsgatling || die "emake tlsgatling failed"
- #fi
- emake gatling || die "emake gatling failed"
-}
-
-src_install() {
- dobin gatling || die "installing gatling binary failed"
- doman gatling.1 || die "installing manpage failed"
- # FIX ME
- #dobin tlsgatling || die "installing tlsgatling binary failed"
-
- newconfd "${FILESDIR}/gatling.confd" gatling
- newinitd "${FILESDIR}/gatling.initd" gatling
- dodoc README.{ftp,http} || die "installing docs failed"
-}
-
-pkg_setup() {
- ebegin "Creating gatling user and group"
- enewgroup gatling
- enewuser ${PN} -1 -1 /var/www/localhost ${PN}
-}