zerochaos    14/11/02 03:45:05

  Modified:             ChangeLog
  Added:                ettercap-0.8.1-r1.ebuild
  Log:
  fix for optional pdf dep, bug #527646, disable building of pdfs that don't 
even get installed
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
DD11F94A)

Revision  Changes    Path
1.153                net-analyzer/ettercap/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ChangeLog?rev=1.153&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ChangeLog?rev=1.153&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ChangeLog?r1=1.152&r2=1.153

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- ChangeLog   18 Oct 2014 13:58:39 -0000      1.152
+++ ChangeLog   2 Nov 2014 03:45:05 -0000       1.153
@@ -1,6 +1,12 @@
 # ChangeLog for net-analyzer/ettercap
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v 1.152 
2014/10/18 13:58:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ChangeLog,v 1.153 
2014/11/02 03:45:05 zerochaos Exp $
+
+*ettercap-0.8.1-r1 (02 Nov 2014)
+
+  02 Nov 2014; Rick Farina <[email protected]> +ettercap-0.8.1-r1.ebuild:
+  fix for optional pdf dep, bug #527646, disable building of pdfs that don't
+  even get installed
 
 *ettercap-0.8.1 (18 Oct 2014)
 



1.1                  net-analyzer/ettercap/ettercap-0.8.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ettercap-0.8.1-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ettercap/ettercap-0.8.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: ettercap-0.8.1-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.8.1-r1.ebuild,v 1.1 
2014/11/02 03:45:05 zerochaos Exp $

EAPI=5

CMAKE_MIN_VERSION=2.8

inherit cmake-utils

DESCRIPTION="A suite for man in the middle attacks"
HOMEPAGE="https://github.com/Ettercap/ettercap";
SRC_URI="https://github.com/Ettercap/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz" #mirror does not work

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~sparc ~x86 ~x86-fbsd"
#IUSE="doc gtk ipv6 ncurses +plugins test"
IUSE="gtk ipv6 ncurses +plugins"

RDEPEND="dev-libs/libbsd
        dev-libs/libpcre
        dev-libs/openssl
        net-libs/libnet:1.1
        >=net-libs/libpcap-0.8.1
        sys-libs/zlib
        gtk? (
                >=dev-libs/atk-1.2.4
                >=dev-libs/glib-2.2.2:2
                media-libs/freetype
                x11-libs/cairo
                x11-libs/gdk-pixbuf:2
                >=x11-libs/gtk+-2.2.2:2
                >=x11-libs/pango-1.2.3
        )
        ncurses? ( >=sys-libs/ncurses-5.3 )
        plugins? (
                >=net-misc/curl-7.26.0
                sys-devel/libtool
        )"

DEPEND="${RDEPEND}
        sys-devel/flex
        virtual/yacc"
        #doc? ( app-text/ghostscript-gpl
        #       sys-apps/groff )

src_prepare() {
        sed -i "s:Release:Release Gentoo:" CMakeLists.txt || die
}

src_configure() {
        local mycmakeargs=(
                $(cmake-utils_use_enable ncurses CURSES)
                $(cmake-utils_use_enable gtk)
                $(cmake-utils_use_enable plugins)
                $(cmake-utils_use_enable ipv6)
                -DBUNDLED_LIBS=OFF
                -DSYSTEM_LIBS=ON
                -DINSTALL_SYSCONFDIR="${EROOT}"etc
        )
                #we can build the pdf docs, but they don't actually get 
installed
                #plus, does anyone need this at all???
                #$(cmake-utils_use_enable doc PDF_DOCS)

                #we want to enable testing but it fails right now
                #we want to disable the bundled crap, but we are missing at 
least "libcheck"
                #if we want to enable tests, we need to fix it, and either 
package libcheck or allow bundled version
                #$(cmake-utils_use_enable test TESTS)
        cmake-utils_src_configure
}




Reply via email to