public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/tinc: ChangeLog tinc-1.0.18.ebuild
@ 2012-03-26  1:44 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-03-26  1:44 UTC (permalink / raw
  To: gentoo-commits

blueness    12/03/26 01:44:08

  Modified:             ChangeLog
  Added:                tinc-1.0.18.ebuild
  Log:
  Version bump with patch to fix AC_ARG_ENABLE
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.32                 net-misc/tinc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	11 Mar 2012 14:08:26 -0000	1.31
+++ ChangeLog	26 Mar 2012 01:44:07 -0000	1.32
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/tinc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.31 2012/03/11 14:08:26 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.32 2012/03/26 01:44:07 blueness Exp $
+
+*tinc-1.0.18 (26 Mar 2012)
+
+  26 Mar 2012; Anthony G. Basile <blueness@gentoo.org> +tinc-1.0.18.ebuild,
+  +files/fix-ac-arg-enable.patch:
+  Version bump with patch to fix AC_ARG_ENABLE
 
 *tinc-1.0.17 (11 Mar 2012)
 



1.1                  net-misc/tinc/tinc-1.0.18.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/tinc-1.0.18.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/tinc-1.0.18.ebuild?rev=1.1&content-type=text/plain

Index: tinc-1.0.18.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.18.ebuild,v 1.1 2012/03/26 01:44:07 blueness Exp $

EAPI="4"

inherit eutils autotools

DESCRIPTION="tinc is an easy to configure VPN implementation"
HOMEPAGE="http://www.tinc-vpn.org/"
SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~x86-linux ~ppc-macos ~x86-macos"
IUSE="+lzo vde +zlib"

DEPEND=">=dev-libs/openssl-0.9.7
	lzo? ( dev-libs/lzo:2 )
	zlib? ( >=sys-libs/zlib-1.1.4 )"
RDEPEND="${DEPEND}
	vde? ( net-misc/vde )"

src_prepare() {
	epatch "${FILESDIR}"/fix-ac-arg-enable.patch
	eautoreconf
}

src_configure() {
	# The new DeviceType option can now be used to select UML or VDE
	# devices without having to recompile.  So we'll set UML by default
	# since it doesn't pull in any deps, but VDE needs net-misc/vde,
	# so we'll keep that contingent on a USE flag.
	econf \
		--enable-jumbograms \
		--enable-uml \
		$(use_enable vde) \
		$(use_enable lzo) \
		$(use_enable zlib)
}

src_install() {
	emake DESTDIR="${D}" install
	dodir /etc/tinc
	dodoc AUTHORS NEWS README THANKS
	newinitd "${FILESDIR}"/tincd.1 tincd
	newinitd "${FILESDIR}"/tincd.lo.1 tincd.lo
	doconfd "${FILESDIR}"/tinc.networks
	newconfd "${FILESDIR}"/tincd.conf.1 tincd
}

pkg_postinst() {
	elog "This package requires the tun/tap kernel device."
	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
}






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

* [gentoo-commits] gentoo-x86 commit in net-misc/tinc: ChangeLog tinc-1.0.18.ebuild
@ 2012-03-26 12:40 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-03-26 12:40 UTC (permalink / raw
  To: gentoo-commits

blueness    12/03/26 12:40:17

  Modified:             ChangeLog tinc-1.0.18.ebuild
  Log:
  Force disable tunemu, fix bug #409749
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.33                 net-misc/tinc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	26 Mar 2012 01:44:07 -0000	1.32
+++ ChangeLog	26 Mar 2012 12:40:17 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/tinc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.32 2012/03/26 01:44:07 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.33 2012/03/26 12:40:17 blueness Exp $
+
+  26 Mar 2012; Anthony G. Basile <blueness@gentoo.org> tinc-1.0.18.ebuild,
+  files/fix-ac-arg-enable.patch:
+  Force disable tunemu, fix bug #409749
 
 *tinc-1.0.18 (26 Mar 2012)
 



1.2                  net-misc/tinc/tinc-1.0.18.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/tinc-1.0.18.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/tinc-1.0.18.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/tinc-1.0.18.ebuild?r1=1.1&r2=1.2

Index: tinc-1.0.18.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.18.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tinc-1.0.18.ebuild	26 Mar 2012 01:44:07 -0000	1.1
+++ tinc-1.0.18.ebuild	26 Mar 2012 12:40:17 -0000	1.2
@@ -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-misc/tinc/tinc-1.0.18.ebuild,v 1.1 2012/03/26 01:44:07 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.18.ebuild,v 1.2 2012/03/26 12:40:17 blueness Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="+lzo vde +zlib"
+IUSE="+lzo uml vde +zlib"
 
 DEPEND=">=dev-libs/openssl-0.9.7
 	lzo? ( dev-libs/lzo:2 )
@@ -27,15 +27,12 @@
 }
 
 src_configure() {
-	# The new DeviceType option can now be used to select UML or VDE
-	# devices without having to recompile.  So we'll set UML by default
-	# since it doesn't pull in any deps, but VDE needs net-misc/vde,
-	# so we'll keep that contingent on a USE flag.
 	econf \
 		--enable-jumbograms \
-		--enable-uml \
-		$(use_enable vde) \
+		--disable-tunemu  \
 		$(use_enable lzo) \
+		$(use_enable uml) \
+		$(use_enable vde) \
 		$(use_enable zlib)
 }
 






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

* [gentoo-commits] gentoo-x86 commit in net-misc/tinc: ChangeLog tinc-1.0.18.ebuild
@ 2013-03-05  2:41 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-03-05  2:41 UTC (permalink / raw
  To: gentoo-commits

blueness    13/03/05 02:41:34

  Modified:             ChangeLog
  Removed:              tinc-1.0.18.ebuild
  Log:
  Remove older unstable version
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.39                 net-misc/tinc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	5 Mar 2013 02:34:20 -0000	1.38
+++ ChangeLog	5 Mar 2013 02:41:34 -0000	1.39
@@ -1,6 +1,10 @@
 # ChangeLog for net-misc/tinc
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.38 2013/03/05 02:34:20 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.39 2013/03/05 02:41:34 blueness Exp $
+
+  05 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
+  -files/fix-ac-arg-enable.patch, -tinc-1.0.18.ebuild:
+  Remove older unstable version
 
 *tinc-1.0.20 (05 Mar 2013)
 





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

end of thread, other threads:[~2013-03-05  2:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-26  1:44 [gentoo-commits] gentoo-x86 commit in net-misc/tinc: ChangeLog tinc-1.0.18.ebuild Anthony G. Basile (blueness)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-26 12:40 Anthony G. Basile (blueness)
2013-03-05  2:41 Anthony G. Basile (blueness)

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