public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/sguil-client: ChangeLog sguil-client-0.6.1.ebuild
@ 2009-03-08  2:54 Dawid Weglinski (cla)
  0 siblings, 0 replies; 4+ messages in thread
From: Dawid Weglinski (cla) @ 2009-03-08  2:54 UTC (permalink / raw
  To: gentoo-commits

cla         09/03/08 02:54:25

  Modified:             ChangeLog sguil-client-0.6.1.ebuild
  Log:
  Migration to EAPI 2, add get_libdir() fix, keyword ~amd64
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  net-analyzer/sguil-client/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/sguil-client/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/sguil-client/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/sguil-client/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	16 Aug 2008 17:37:01 -0000	1.7
+++ ChangeLog	8 Mar 2009 02:54:25 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/sguil-client
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v 1.7 2008/08/16 17:37:01 tove Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v 1.8 2009/03/08 02:54:25 cla Exp $
+
+  08 Mar 2009; Dawid Węgliński <cla@gentoo.org> sguil-client-0.6.1.ebuild:
+  Migration to EAPI 2, add get_libdir() fix, keyword ~amd64
 
   16 Aug 2008; Torsten Veller <tove@gentoo.org> metadata.xml:
   Remove strerror from metadata.xml (#89719)



1.5                  net-analyzer/sguil-client/sguil-client-0.6.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?r1=1.4&r2=1.5

Index: sguil-client-0.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sguil-client-0.6.1.ebuild	11 Jul 2007 23:49:24 -0000	1.4
+++ sguil-client-0.6.1.ebuild	8 Mar 2009 02:54:25 -0000	1.5
@@ -1,6 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v 1.4 2007/07/11 23:49:24 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v 1.5 2009/03/08 02:54:25 cla Exp $
+
+EAPI="2"
 
 inherit eutils
 
@@ -10,12 +12,12 @@
 SRC_URI="mirror://sourceforge/sguil/sguil-client-${MY_PV}.tar.gz"
 LICENSE="QPL"
 SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="ssl"
 
 DEPEND=""
 RDEPEND="
-	>=dev-lang/tcl-8.3
+	>=dev-lang/tcl-8.3[-threads]
 	>=dev-lang/tk-8.3
 	>=dev-tcltk/itcl-3.2
 	>=dev-tcltk/tclx-8.3
@@ -27,22 +29,14 @@
 
 S="${WORKDIR}/sguil-${MY_PV}"
 
-pkg_setup() {
-	if built_with_use dev-lang/tcl threads ; then
-		eerror
-		eerror "Sguil does not run when tcl was built with threading enabled."
-		eerror "Please rebuild tcl without threads and reemerge this ebuild."
-		die
-	fi
-}
-
 src_unpack() {
 	unpack ${A}
-	cd ${S}
-	sed -i -e '/^set SGUILLIB /s:./lib:/usr/lib/sguil:' \
+	cd "${S}"
+	sed -i -e "/^set SGUILLIB /s:./lib:/usr/$(get_libdir)/sguil:" \
 		-e '/^set ETHEREAL_PATH /s:/usr/sbin/ethereal:/usr/bin/wireshark:' \
 		-e '/^set SERVERHOST /s:demo.sguil.net:localhost:' \
 		-e '/^set MAILSERVER /s:mail.example.com:localhost:' \
+		-e '/^set GPG_PATH /s:/usr/local/bin/gpg:/usr/bin/gpg:' \
 		client/sguil.conf || die "sed failed"
 	sed -i -e 's:^exec wish:exec wishx': \
 		client/sguil.tk || die "sed failed"
@@ -52,8 +46,8 @@
 	dobin client/sguil.tk
 	insinto /etc/sguil
 	doins client/sguil.conf
-	mkdir -p "${D}/usr/lib/sguil"
-	cp -a ${S}/client/lib/* "${D}/usr/lib/sguil/"
+	insinto "/usr/$(get_libdir)/sguil"
+	doins "${S}"/client/lib/*
 	dodoc doc/*
 }
 






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/sguil-client: ChangeLog sguil-client-0.6.1.ebuild
@ 2012-04-29 17:03 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2012-04-29 17:03 UTC (permalink / raw
  To: gentoo-commits

jer         12/04/29 17:03:12

  Modified:             ChangeLog sguil-client-0.6.1.ebuild
  Log:
  Fix inherit. Remove empty DEPEND. Remove useless elog.
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  net-analyzer/sguil-client/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	8 Mar 2009 02:54:25 -0000	1.8
+++ ChangeLog	29 Apr 2012 17:03:12 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/sguil-client
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v 1.8 2009/03/08 02:54:25 cla Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v 1.9 2012/04/29 17:03:12 jer Exp $
+
+  29 Apr 2012; Jeroen Roovers <jer@gentoo.org> sguil-client-0.6.1.ebuild:
+  Fix inherit. Remove empty DEPEND. Remove useless elog.
 
   08 Mar 2009; Dawid Węgliński <cla@gentoo.org> sguil-client-0.6.1.ebuild:
   Migration to EAPI 2, add get_libdir() fix, keyword ~amd64



1.6                  net-analyzer/sguil-client/sguil-client-0.6.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?r1=1.5&r2=1.6

Index: sguil-client-0.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sguil-client-0.6.1.ebuild	8 Mar 2009 02:54:25 -0000	1.5
+++ sguil-client-0.6.1.ebuild	29 Apr 2012 17:03:12 -0000	1.6
@@ -1,10 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v 1.5 2009/03/08 02:54:25 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v 1.6 2012/04/29 17:03:12 jer Exp $
 
-EAPI="2"
-
-inherit eutils
+EAPI=4
+inherit multilib
 
 MY_PV="${PV/_p/p}"
 DESCRIPTION="GUI Console for sguil Network Security Monitoring"
@@ -15,7 +14,6 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="ssl"
 
-DEPEND=""
 RDEPEND="
 	>=dev-lang/tcl-8.3[-threads]
 	>=dev-lang/tk-8.3
@@ -29,17 +27,15 @@
 
 S="${WORKDIR}/sguil-${MY_PV}"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	sed -i -e "/^set SGUILLIB /s:./lib:/usr/$(get_libdir)/sguil:" \
+src_prepare() {
+	sed -i client/sguil.conf \
+		-e "/^set SGUILLIB /s:./lib:/usr/$(get_libdir)/sguil:" \
 		-e '/^set ETHEREAL_PATH /s:/usr/sbin/ethereal:/usr/bin/wireshark:' \
 		-e '/^set SERVERHOST /s:demo.sguil.net:localhost:' \
 		-e '/^set MAILSERVER /s:mail.example.com:localhost:' \
-		-e '/^set GPG_PATH /s:/usr/local/bin/gpg:/usr/bin/gpg:' \
-		client/sguil.conf || die "sed failed"
-	sed -i -e 's:^exec wish:exec wishx': \
-		client/sguil.tk || die "sed failed"
+		-e '/^set GPG_PATH /s:/usr/local/bin/gpg:/usr/bin/gpg:' || die
+	sed -i client/sguil.tk \
+		-e 's:^exec wish:exec wishx:' || die
 }
 
 src_install() {
@@ -50,9 +46,3 @@
 	doins "${S}"/client/lib/*
 	dodoc doc/*
 }
-
-pkg_postinst() {
-	elog
-	elog "You can customize your configuration by modifying /etc/sguil/sguil.conf"
-	elog
-}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/sguil-client: ChangeLog sguil-client-0.6.1.ebuild
@ 2012-04-30 15:17 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2012-04-30 15:17 UTC (permalink / raw
  To: gentoo-commits

jer         12/04/30 15:17:42

  Modified:             ChangeLog sguil-client-0.6.1.ebuild
  Log:
  Install everything in client/lib. Remove sed script by Greg Watson (bug 190584).
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 net-analyzer/sguil-client/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	29 Apr 2012 17:03:12 -0000	1.9
+++ ChangeLog	30 Apr 2012 15:17:42 -0000	1.10
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/sguil-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v 1.9 2012/04/29 17:03:12 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v 1.10 2012/04/30 15:17:42 jer Exp $
+
+  30 Apr 2012; Jeroen Roovers <jer@gentoo.org> sguil-client-0.6.1.ebuild:
+  Install everything in client/lib. Remove sed script by Greg Watson (bug
+  190584).
 
   29 Apr 2012; Jeroen Roovers <jer@gentoo.org> sguil-client-0.6.1.ebuild:
   Fix inherit. Remove empty DEPEND. Remove useless elog.



1.7                  net-analyzer/sguil-client/sguil-client-0.6.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild?r1=1.6&r2=1.7

Index: sguil-client-0.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sguil-client-0.6.1.ebuild	29 Apr 2012 17:03:12 -0000	1.6
+++ sguil-client-0.6.1.ebuild	30 Apr 2012 15:17:42 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v 1.6 2012/04/29 17:03:12 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/sguil-client-0.6.1.ebuild,v 1.7 2012/04/30 15:17:42 jer Exp $
 
 EAPI=4
 inherit multilib
@@ -34,8 +34,6 @@
 		-e '/^set SERVERHOST /s:demo.sguil.net:localhost:' \
 		-e '/^set MAILSERVER /s:mail.example.com:localhost:' \
 		-e '/^set GPG_PATH /s:/usr/local/bin/gpg:/usr/bin/gpg:' || die
-	sed -i client/sguil.tk \
-		-e 's:^exec wish:exec wishx:' || die
 }
 
 src_install() {
@@ -43,6 +41,6 @@
 	insinto /etc/sguil
 	doins client/sguil.conf
 	insinto "/usr/$(get_libdir)/sguil"
-	doins "${S}"/client/lib/*
+	doins -r "${S}"/client/lib/*
 	dodoc doc/*
 }






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/sguil-client: ChangeLog sguil-client-0.6.1.ebuild
@ 2012-09-18  1:39 Tim Harder (radhermit)
  0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder (radhermit) @ 2012-09-18  1:39 UTC (permalink / raw
  To: gentoo-commits

radhermit    12/09/18 01:39:15

  Modified:             ChangeLog
  Removed:              sguil-client-0.6.1.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.0_alpha128/cvs/Linux x86_64)

Revision  Changes    Path
1.12                 net-analyzer/sguil-client/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	30 Apr 2012 15:21:33 -0000	1.11
+++ ChangeLog	18 Sep 2012 01:39:15 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/sguil-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v 1.11 2012/04/30 15:21:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sguil-client/ChangeLog,v 1.12 2012/09/18 01:39:15 radhermit Exp $
+
+  18 Sep 2012; Tim Harder <radhermit@gentoo.org> -sguil-client-0.6.1.ebuild:
+  Remove old.
 
 *sguil-client-0.8.0 (30 Apr 2012)
 





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-09-18  1:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-08  2:54 [gentoo-commits] gentoo-x86 commit in net-analyzer/sguil-client: ChangeLog sguil-client-0.6.1.ebuild Dawid Weglinski (cla)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-29 17:03 Jeroen Roovers (jer)
2012-04-30 15:17 Jeroen Roovers (jer)
2012-09-18  1:39 Tim Harder (radhermit)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox