summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Pavljuchenkov (SpiderX) <spiderx@spiderx.dp.ua>2018-12-02 13:05:06 +0200
committerPatrice Clement <monsieurp@gentoo.org>2018-12-04 23:52:56 +0100
commitbe89232ad6c497237520fd9f386344641ace8535 (patch)
tree8ee9d4e59b955ba4f5e53cfe33051f60e04e86c4 /net-analyzer/goaccess/goaccess-0.5-r1.ebuild
parentx11-misc/libinput-gestures: version bump to 2.40 (diff)
downloadgentoo-be89232ad6c497237520fd9f386344641ace8535.tar.gz
gentoo-be89232ad6c497237520fd9f386344641ace8535.tar.bz2
gentoo-be89232ad6c497237520fd9f386344641ace8535.zip
net-analyzer/goaccess: drop old ebuilds.
Signed-off-by: Vladimir Pavljuchenkov <spiderx@spiderx.dp.ua> Package-Manager: Portage-2.3.51, Repoman-2.3.11 Closes: https://github.com/gentoo/gentoo/pull/10538 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'net-analyzer/goaccess/goaccess-0.5-r1.ebuild')
-rw-r--r--net-analyzer/goaccess/goaccess-0.5-r1.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/net-analyzer/goaccess/goaccess-0.5-r1.ebuild b/net-analyzer/goaccess/goaccess-0.5-r1.ebuild
deleted file mode 100644
index efe48d4f17d3..000000000000
--- a/net-analyzer/goaccess/goaccess-0.5-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=1
-inherit autotools-utils
-
-DESCRIPTION="A real-time Apache log analyzer and interactive viewer that runs in a terminal"
-HOMEPAGE="http://goaccess.prosoftcorp.com"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
-IUSE="geoip unicode"
-
-RDEPEND="
- dev-libs/glib:2
- sys-libs/ncurses:0=[unicode?]
- geoip? ( dev-libs/geoip )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-src_prepare() {
- # respect CFLAGS, bug #451806
- sed -i -e '/AM_CFLAGS/s/-g//' Makefile.am || die 'sed failed'
- autotools-utils_src_prepare
-}
-
-src_configure() {
- # configure does not properly recognise '--disable-something'
- local myeconfargs=(
- $(usex geoip '--enable-geoip' '' '' '')
- $(usex unicode '--enable-utf8' '' '' '')
- )
- autotools-utils_src_configure
-}
-
-src_compile() {
- autotools-utils_src_compile CFLAGS="${CFLAGS}"
-}