summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Cafarelli <voyageur@gentoo.org>2013-05-23 20:39:53 +0000
committerBernard Cafarelli <voyageur@gentoo.org>2013-05-23 20:39:53 +0000
commit4e8e10082bbb5851b6a358231c9cf6be20ea1c62 (patch)
tree0846c7e7155caf946d3753d6bde53a334944d779 /net-misc
parentSet permissions for /var/lib/nginx/tmp to 0750 instead of 0700 to avoid a pro... (diff)
downloadgentoo-2-4e8e10082bbb5851b6a358231c9cf6be20ea1c62.tar.gz
gentoo-2-4e8e10082bbb5851b6a358231c9cf6be20ea1c62.tar.bz2
gentoo-2-4e8e10082bbb5851b6a358231c9cf6be20ea1c62.zip
Fix typo in postinst message, spotted by Chris Kerr <gingekerr@yahoo.co.uk> in bug #470116. Remove previous stable version
(Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/gogoc/ChangeLog7
-rw-r--r--net-misc/gogoc/gogoc-1.2-r1.ebuild91
-rw-r--r--net-misc/gogoc/gogoc-1.2-r2.ebuild4
3 files changed, 8 insertions, 94 deletions
diff --git a/net-misc/gogoc/ChangeLog b/net-misc/gogoc/ChangeLog
index 064da567614d..282c7056de4b 100644
--- a/net-misc/gogoc/ChangeLog
+++ b/net-misc/gogoc/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/gogoc
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/gogoc/ChangeLog,v 1.22 2013/02/08 14:30:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gogoc/ChangeLog,v 1.23 2013/05/23 20:39:53 voyageur Exp $
+
+ 23 May 2013; Bernard Cafarelli <voyageur@gentoo.org> -gogoc-1.2-r1.ebuild,
+ gogoc-1.2-r2.ebuild:
+ Fix typo in postinst message, spotted by Chris Kerr <gingekerr@yahoo.co.uk>
+ in bug #470116. Remove previous stable version
08 Feb 2013; Jeroen Roovers <jer@gentoo.org> gogoc-1.2-r2.ebuild:
Stable for HPPA (bug #444324).
diff --git a/net-misc/gogoc/gogoc-1.2-r1.ebuild b/net-misc/gogoc/gogoc-1.2-r1.ebuild
deleted file mode 100644
index 8cba647a235c..000000000000
--- a/net-misc/gogoc/gogoc-1.2-r1.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/gogoc/gogoc-1.2-r1.ebuild,v 1.13 2012/07/12 08:45:15 voyageur Exp $
-
-EAPI=2
-
-inherit eutils versionator toolchain-funcs
-
-MY_P=${PN}-$(replace_all_version_separators "_")
-if [[ ${MY_P/_beta/} != ${MY_P} ]]; then
- MY_P=${MY_P/_beta/-BETA}
-else
- MY_P=${MY_P}-RELEASE
-fi
-
-DESCRIPTION="Client to connect to a tunnel broker using the TSP protocol (freenet6 for example)"
-HOMEPAGE="http://gogonet.gogo6.com/page/download-1"
-SRC_URI="http://gogo6.com/downloads/${MY_P}.tar.gz"
-
-# GPL-2 for Gentoo init script
-LICENSE="MIT GPL-2"
-SLOT="0"
-KEYWORDS="amd64 hppa sparc x86"
-IUSE="debug"
-
-DEPEND="dev-libs/openssl"
-RDEPEND="${DEPEND}
- sys-apps/iproute2
- <sys-apps/net-tools-1.60_p20120127084908"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-overflow.patch
- epatch "${FILESDIR}"/${P}+gcc-4.6.patch
-
- # Make the makefile handle linking correctly
- find . -name Makefile -exec sed -i \
- -e 's:LDFLAGS:LDLIBS:g' \
- -e '/\$(LDLIBS)/s:-o:$(LDFLAGS) -o:' \
- {} + || die "multised failed"
-
- sed -i -e 's:/usr/local/etc/gogoc:/etc/gogoc:' \
- gogoc-tsp/platform/*/tsp_local.c \
- || die "sed failed"
-}
-
-src_configure() { :; }
-
-src_compile() {
- # parallel make fails as inter-directory dependecies are missing.
- emake -j1 \
- AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" \
- CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getCXX)" \
- EXTRA_CFLAGS="${CFLAGS}" EXTRA_CXXFLAGS="${CXXFLAGS}" \
- $(use debug && echo DEBUG=1) \
- all target=linux || die "Build Failed"
-
- emake -C gogoc-tsp/conf \
- PLATFORM=linux PLATFORM_DIR=../platform BIN_DIR=../bin \
- gogoc.conf.sample || die
-}
-
-src_install() {
- dodoc README || die
-
- cd "${S}"/gogoc-tsp
- dosbin bin/gogoc || die
-
- dodoc bin/gogoc.conf.sample || die
-
- exeinto /etc/gogoc/template
- doexe template/linux.sh || die
-
- newinitd "${FILESDIR}"/gogoc.rc gogoc || die
-
- doman man/{man5/gogoc.conf.5,man8/gogoc.8} || die
- keepdir /var/lib/gogoc || die
-
- diropts -m0700
- keepdir /etc/gogoc || die
-}
-
-pkg_postinst() {
- elog "You should create an /etc/gogoc/gogoc.conf file starting from"
- elog "the sample configuration in /usr/share/doc/${PF}/gogo.conf.sample.*"
- elog ""
- elog "To add support for a TSP IPv6 connection at startup,"
- elog "remember to run:"
- elog "# rc-update add gogoc default"
-}
diff --git a/net-misc/gogoc/gogoc-1.2-r2.ebuild b/net-misc/gogoc/gogoc-1.2-r2.ebuild
index 7ed2816dd2e7..dbf875ee1fbd 100644
--- a/net-misc/gogoc/gogoc-1.2-r2.ebuild
+++ b/net-misc/gogoc/gogoc-1.2-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/gogoc/gogoc-1.2-r2.ebuild,v 1.6 2013/02/08 14:30:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gogoc/gogoc-1.2-r2.ebuild,v 1.7 2013/05/23 20:39:53 voyageur Exp $
EAPI=4
@@ -88,7 +88,7 @@ src_install() {
pkg_postinst() {
elog "You should create an /etc/gogoc/gogoc.conf file starting from"
- elog "the sample configuration in /usr/share/doc/${PF}/gogo.conf.sample.*"
+ elog "the sample configuration in /usr/share/doc/${PF}/gogoc.conf.sample.*"
elog ""
elog "To add support for a TSP IPv6 connection at startup,"
elog "remember to run:"