www-servers/gatling: Drop old
authorSebastian Pipping <sping@gentoo.org>
Sat, 23 Nov 2019 17:46:35 +0000 (18:46 +0100)
committerSebastian Pipping <sping@gentoo.org>
Sat, 23 Nov 2019 17:51:00 +0000 (18:51 +0100)
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Package-Manager: Portage-2.3.78, Repoman-2.3.16

www-servers/gatling/Manifest
www-servers/gatling/gatling-0.13-r1.ebuild [deleted file]

index 288ce4137c216d0ba1d22d1a39ea9350dbbe40a2..ea5623b0165638aa2b927076acce120ce8cdecd6 100644 (file)
@@ -1,2 +1 @@
-DIST gatling-0.13.tar.bz2 108128 BLAKE2B a8226bb9c608dd77491e4a922a79c310a40e155afcb28602a0cf279e45919bd86a0e93e58d7f33a3551820de20ae219e7af75bc0402eab27c95ba0530575f4c0 SHA512 b9fa604aa8bb8c5d40d9c3eaaa536ed5e73d0ed93eccb41ca4744316ad893dc6fe92fe2c1f0247de82d4eda63b0ab7ab338355d9963fb58f23d39a2c678a1db8
 DIST gatling-0.15.tar.xz 121804 BLAKE2B 7df5f6d4fc823e8a1252bacca2b57d0848dd3a920216d1d3185d5f471f786eee1eb36396114b367660ead816bd4ee6c734099bbb9bdb5ffbd5b70a59e0fb0667 SHA512 b76d220a0644f1e6e7ea966a4eff409964c564fc4a31c4efdb764e5f7b5857bc58c26bc31e860fe35df932cbd60fb2b0f4f21c75cb5aa56427e8a2a453684716
diff --git a/www-servers/gatling/gatling-0.13-r1.ebuild b/www-servers/gatling/gatling-0.13-r1.ebuild
deleted file mode 100644 (file)
index 45cbd58..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-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="libressl ssl diet"
-REQUIRED_USE="ssl? ( !diet )"
-
-DEPEND=">=dev-libs/libowfat-0.25[diet=]
-       diet? ( dev-libs/dietlibc )
-       ssl? (
-               !libressl? ( dev-libs/openssl:0 )
-               libressl? ( dev-libs/libressl )
-       )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-       rm Makefile  # leaves us with GNUmakefile
-       epatch "${FILESDIR}/${P}-compile.patch"
-}
-
-src_compile() {
-       local DIET=
-       use diet && DIET='/usr/bin/diet'
-
-       local targets='gatling'
-       use ssl && targets+=' tlsgatling'
-
-       emake DIET="${DIET}" CC="$(tc-getCC)" \
-                       CFLAGS="${CFLAGS} -I${ROOT}usr/include/libowfat" \
-                       LDFLAGS="${LDFLAGS}" prefix=/usr ${targets} \
-                       || die "emake ${targets} failed"
-}
-
-src_install() {
-       doman gatling.1 || die "installing manpage failed"
-
-       newconfd "${FILESDIR}/gatling.confd" gatling || die
-       newinitd "${FILESDIR}/gatling.initd-2" gatling || die
-       dodoc README.{ftp,http} || die "installing docs failed"
-
-       dobin gatling || die "installing gatling binary failed"
-       use ssl && {
-               dodoc README.tls || die "installing docs failed"
-               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}
-}