diff options
author | Jason A. Donenfeld <zx2c4@gentoo.org> | 2014-04-26 02:39:45 +0000 |
---|---|---|
committer | Jason A. Donenfeld <zx2c4@gentoo.org> | 2014-04-26 02:39:45 +0000 |
commit | 4a90fa5b35eda25f3eaf385b1c699a46abf01d7e (patch) | |
tree | a8d4fee6c8695011c564d4e4a20139250d33b0ae /net-wireless/openbsc | |
parent | Import builds. (diff) | |
download | gentoo-2-4a90fa5b35eda25f3eaf385b1c699a46abf01d7e.tar.gz gentoo-2-4a90fa5b35eda25f3eaf385b1c699a46abf01d7e.tar.bz2 gentoo-2-4a90fa5b35eda25f3eaf385b1c699a46abf01d7e.zip |
Initial import.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A5DE03AE)
Diffstat (limited to 'net-wireless/openbsc')
-rw-r--r-- | net-wireless/openbsc/ChangeLog | 9 | ||||
-rw-r--r-- | net-wireless/openbsc/metadata.xml | 6 | ||||
-rw-r--r-- | net-wireless/openbsc/openbsc-9999.ebuild | 29 |
3 files changed, 44 insertions, 0 deletions
diff --git a/net-wireless/openbsc/ChangeLog b/net-wireless/openbsc/ChangeLog new file mode 100644 index 000000000000..5837ba42006d --- /dev/null +++ b/net-wireless/openbsc/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-wireless/openbsc +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/openbsc/ChangeLog,v 1.1 2014/04/26 02:39:45 zx2c4 Exp $ + +*openbsc-9999 (26 Apr 2014) + + 26 Apr 2014; Jason A. Donenfeld <zx2c4@gentoo.org> +metadata.xml, + +openbsc-9999.ebuild: + Initial import. diff --git a/net-wireless/openbsc/metadata.xml b/net-wireless/openbsc/metadata.xml new file mode 100644 index 000000000000..c1b4dee070d2 --- /dev/null +++ b/net-wireless/openbsc/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>radio</herd> +</pkgmetadata> + diff --git a/net-wireless/openbsc/openbsc-9999.ebuild b/net-wireless/openbsc/openbsc-9999.ebuild new file mode 100644 index 000000000000..36b6ddf66dde --- /dev/null +++ b/net-wireless/openbsc/openbsc-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/openbsc/openbsc-9999.ebuild,v 1.1 2014/04/26 02:39:45 zx2c4 Exp $ + +EAPI=5 + +inherit autotools git-2 + +DESCRIPTION="OpenBSC, OsmoSGSN, OsmoBSC and other programs" +HOMEPAGE="http://openbsc.osmocom.org/trac/wiki/OpenBSC" +#SRC_URI="http://cgit.osmocom.org/cgit/${PN}/snapshot/${P}.tar.bz2" +EGIT_REPO_URI="git://git.osmocom.org/${PN}.git" +#EGIT_BRANCH="jolly/testing" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="net-libs/libosmocore net-libs/libosmo-abis" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P}/${PN}" +EGIT_SOURCEDIR="${WORKDIR}/${P}" + +src_prepare() { + #sed -i "s/UNKNOWN/${PV}/" git-version-gen || die + eautoreconf +} |