public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/betagarden:master commit in: net-misc/ut-vpn/
@ 2011-04-25 16:52 Naohiro Aota
  0 siblings, 0 replies; 3+ messages in thread
From: Naohiro Aota @ 2011-04-25 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     bc5d5057ead9a606e90151cda75cd39845f7d8b8
Author:     Naohiro Aota <naota <AT> elisp <DOT> net>
AuthorDate: Mon Apr 25 16:52:10 2011 +0000
Commit:     Naohiro Aota <naota <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 16:52:10 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=bc5d5057

New ebuild UT-VPN. Powerful and useful VPN software.

(Portage version: 2.2.0_alpha30/git/Linux x86_64, signed Manifest commit with key B487B8C0)

---
 net-misc/ut-vpn/ChangeLog          |    9 ++++++
 net-misc/ut-vpn/metadata.xml       |    8 +++++
 net-misc/ut-vpn/ut-vpn-1.01.ebuild |   56 ++++++++++++++++++++++++++++++++++++
 3 files changed, 73 insertions(+), 0 deletions(-)

diff --git a/net-misc/ut-vpn/ChangeLog b/net-misc/ut-vpn/ChangeLog
new file mode 100644
index 0000000..7740eaa
--- /dev/null
+++ b/net-misc/ut-vpn/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for net-misc/ut-vpn
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*ut-vpn-1.01 (25 Apr 2011)
+
+  25 Apr 2011; <naota@gentoo.org> +ut-vpn-1.01.ebuild, +metadata.xml:
+  New ebuild ut-vpn. Powerful and useful VPN software.
+

diff --git a/net-misc/ut-vpn/metadata.xml b/net-misc/ut-vpn/metadata.xml
new file mode 100644
index 0000000..27592fe
--- /dev/null
+++ b/net-misc/ut-vpn/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+  <email>naota@gentoo.org</email>
+</maintainer>
+</pkgmetadata>

diff --git a/net-misc/ut-vpn/ut-vpn-1.01.ebuild b/net-misc/ut-vpn/ut-vpn-1.01.ebuild
new file mode 100644
index 0000000..da7eff0
--- /dev/null
+++ b/net-misc/ut-vpn/ut-vpn-1.01.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+inherit toolchain-funcs
+
+DESCRIPTION="UT-VPN"
+HOMEPAGE="http://utvpn.tsukuba.ac.jp/ja/"
+SRC_URI="http://utvpn.tsukuba.ac.jp/files/utvpn/v${PV}-7101-public-2010.06.27/Source%20Code%20(Win32%20and%20Unix)/utvpn-src-unix-v101-7101-public-2010.06.27.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+IUSE="elibc_FreeBSD"
+
+DEPEND="dev-libs/openssl
+	sys-libs/readline
+	sys-libs/zlib
+	sys-libs/ncurses
+	elibc_FreeBSD? ( sys-libs/freebsd-lib dev-libs/libiconv )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"/utvpn-unix-v101-7101-public
+
+src_unpack() {
+	unpack ${A}
+	cd "${S}"
+
+	local makefile=""
+	if use x86 ;then
+		makefile="linux_32bit_ja.mak"
+	elif use amd64 ;then
+		makefile="linux_64bit_ja.mak"
+	elif use x86-fbsd ;then
+		makefile="freebsd_32bit_ja.mak"
+	fi
+	cp makefiles/${makefile} Makefile || die
+
+	sed -i \
+		-e "s/-O2/${CFLAGS} ${myflag}/g" \
+		-e "/^CC=/s:gcc:$(tc-getCC):" \
+		-e "/^INSTALL_/s:=/:=${D}/:" Makefile || die
+}
+
+src_compile() {
+	emake || die
+}
+
+src_install() {
+	dodir /usr/bin
+	emake install || die
+
+	for x in utvpnserver utvpnclient utvpncmd; do
+		sed -i -e "s:${D}:${EROOT}:" "${D}"/usr/bin/$x || die
+	done
+}



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

* [gentoo-commits] proj/betagarden:master commit in: net-misc/ut-vpn/
@ 2011-10-27 18:02 Justin Lecher
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2011-10-27 18:02 UTC (permalink / raw
  To: gentoo-commits

commit:     9111e169ce823003e600a61ee683225bb7dd7e07
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 17:46:15 2011 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 17:46:15 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=9111e169

Removed no-herd from herd tag in metadata.xml

(Portage version: 2.2.0_alpha71/git/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 70EB7916)

---
 net-misc/ut-vpn/ChangeLog    |    3 +++
 net-misc/ut-vpn/metadata.xml |    7 +++----
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/net-misc/ut-vpn/ChangeLog b/net-misc/ut-vpn/ChangeLog
index 7740eaa..6618d45 100644
--- a/net-misc/ut-vpn/ChangeLog
+++ b/net-misc/ut-vpn/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  27 Oct 2011; Justin Lecher <jlec@gentoo.org> metadata.xml:
+  Removed no-herd from herd tag in metadata.xml
+
 *ut-vpn-1.01 (25 Apr 2011)
 
   25 Apr 2011; <naota@gentoo.org> +ut-vpn-1.01.ebuild, +metadata.xml:

diff --git a/net-misc/ut-vpn/metadata.xml b/net-misc/ut-vpn/metadata.xml
index 27592fe..8a0d67b 100644
--- a/net-misc/ut-vpn/metadata.xml
+++ b/net-misc/ut-vpn/metadata.xml
@@ -1,8 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<herd>no-herd</herd>
-<maintainer>
-  <email>naota@gentoo.org</email>
-</maintainer>
+	<maintainer>
+		<email>naota@gentoo.org</email>
+	</maintainer>
 </pkgmetadata>



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

* [gentoo-commits] proj/betagarden:master commit in: net-misc/ut-vpn/
@ 2017-06-04 18:17 Justin Lecher
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2017-06-04 18:17 UTC (permalink / raw
  To: gentoo-commits

commit:     27719bc5f2fdbf4dd80a8b4bd49e57bd8bd9ae62
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  4 15:09:36 2017 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Jun  4 15:09:36 2017 +0000
URL:        https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=27719bc5

net-misc/ut-vpn: Bump to EAPI=6

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 net-misc/ut-vpn/ut-vpn-1.01.ebuild | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/net-misc/ut-vpn/ut-vpn-1.01.ebuild b/net-misc/ut-vpn/ut-vpn-1.01.ebuild
index 149cb29..8f47899 100644
--- a/net-misc/ut-vpn/ut-vpn-1.01.ebuild
+++ b/net-misc/ut-vpn/ut-vpn-1.01.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 inherit toolchain-funcs
 
 DESCRIPTION="UT-VPN"
@@ -12,18 +14,18 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
 IUSE="elibc_FreeBSD"
 
-DEPEND="dev-libs/openssl
-	sys-libs/readline
+DEPEND="
+	dev-libs/openssl:0=
+	sys-libs/ncurses:0=
+	sys-libs/readline:0=
 	sys-libs/zlib
-	sys-libs/ncurses
 	elibc_FreeBSD? ( sys-libs/freebsd-lib dev-libs/libiconv )"
 RDEPEND="${DEPEND}"
 
 S="${WORKDIR}"/utvpn-unix-v101-7101-public
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+src_prepare() {
+	default
 
 	local makefile=""
 	if use x86 ;then
@@ -41,11 +43,8 @@ src_unpack() {
 		-e "/^INSTALL_/s:=/:=${D}/:" Makefile || die
 }
 
-src_compile() {
-	emake || die
-}
-
 src_install() {
+	local x
 	dodir /usr/bin
 	emake install || die
 


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

end of thread, other threads:[~2017-06-04 18:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-25 16:52 [gentoo-commits] proj/betagarden:master commit in: net-misc/ut-vpn/ Naohiro Aota
  -- strict thread matches above, loose matches on Subject: below --
2011-10-27 18:02 Justin Lecher
2017-06-04 18:17 Justin Lecher

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