annotate contrib/ebuilds/quicktun-2.1.7.ebuild @ 1131:16cef39f682d draft

Added a whoisd to make for easier querying of the resdb's info. Read the source.
author epoch <epoch@hacking.allowed.org>
date Fri, 23 Aug 2013 03:24:54 +0000
parents 9b65eafaf2d8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1067
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
1 # Copyright 1999-2012 Gentoo Foundation
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
2 # Distributed under the terms of the GNU General Public License v2
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
3 # $Header: $
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
4
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
5 EAPI=4
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
6
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
7 DESCRIPTION="QuickTun is probably the simplest VPN tunnel software ever, yet
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
8 it's very secure. It relies on the NaCl encryption library by D. J. Bernstein."
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
9 HOMEPAGE="http://wiki.ucis.nl/QuickTun"
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
10 SRC_URI="http://oss.ucis.nl/quicktun/src/quicktun-2.1.7.tgz"
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
11
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
12 LICENSE="GPL-2"
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
13 SLOT="2"
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
14 KEYWORDS="~amd64"
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
15 IUSE=""
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
16
1068
9b65eafaf2d8 Adding NaCl ebuild
Zchai Telmach <david.lanzendoerfer@o2s.ch>
parents: 1067
diff changeset
17 DEPEND="dev-libs/nacl"
1067
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
18 RDEPEND="${DEPEND}"
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
19
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
20 src_compile() {
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
21 NACL_SHARED=1 ./build.sh
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
22 }
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
23
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
24 src_install() {
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
25 mkdir -p "${D}/usr/sbin/"
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
26 cp out/quicktun.* "${D}/usr/sbin/"
35abad495280 new file: contrib/ebuilds/quicktun-2.1.7.ebuild
Anonymous Coward <nobody@nowhere>
parents:
diff changeset
27 }