diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-libs/openpgm | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-libs/openpgm')
-rw-r--r-- | net-libs/openpgm/Manifest | 2 | ||||
-rw-r--r-- | net-libs/openpgm/metadata.xml | 15 | ||||
-rw-r--r-- | net-libs/openpgm/openpgm-5.1.118.ebuild | 42 | ||||
-rw-r--r-- | net-libs/openpgm/openpgm-5.2.122.ebuild | 29 |
4 files changed, 88 insertions, 0 deletions
diff --git a/net-libs/openpgm/Manifest b/net-libs/openpgm/Manifest new file mode 100644 index 000000000000..732db69b4598 --- /dev/null +++ b/net-libs/openpgm/Manifest @@ -0,0 +1,2 @@ +DIST libpgm-5.1.118~dfsg.tar.gz 1046589 SHA256 b74c11be9fe226d03e19839c6d841765955f736ae0d12db9baf1447d107e63ef SHA512 9ee358fb473431da99d9382329625cd146c2447dd6567c8b394aebc1d67d53bb4f3423a9b824180884658c34c103ed03915a4d93d3a66c78bb5947c2166c01a9 WHIRLPOOL 38cdbf203a21256da2d374a079e936ab541048fd07f206c772f29eaa380747690f06d75aa6ba8e3cb23249d7d3f21e4a8a0a4da16838a91970f53185ea4099f4 +DIST libpgm-5.2.122~dfsg.tar.gz 951536 SHA256 e296f714d7057e3cdb87f4e29b1aecb3b201b9fcb60aa19ed4eec29524f08bd8 SHA512 4eb562d2663b72cb9f4401c3319014e7b98670e1cc02b930d0ef87bb96a3e7e624f6d8a0935db9808a4987e464aaee50118ddadf4502003e0381d0e385fd9eee WHIRLPOOL 397ab4ce9ee51e791d8ced8b083ec44b282eb739de7b6a71d7d27b82a48b50a3ab3e2b83731ac0d8a065f89932947dd4a5883ae429d285c7bdea44aaeeabcdc4 diff --git a/net-libs/openpgm/metadata.xml b/net-libs/openpgm/metadata.xml new file mode 100644 index 000000000000..3bb2eef1b8a4 --- /dev/null +++ b/net-libs/openpgm/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>qnikst@gentoo.org</email> + <name>Alexander Vershilov</name> + </maintainer> + <maintainer> + <email>jlec@gentoo.org</email> + <name>Justin Lecher</name> + </maintainer> + <upstream> + <remote-id type="google-code">openpgm</remote-id> + </upstream> +</pkgmetadata> diff --git a/net-libs/openpgm/openpgm-5.1.118.ebuild b/net-libs/openpgm/openpgm-5.1.118.ebuild new file mode 100644 index 000000000000..2c79d0de1413 --- /dev/null +++ b/net-libs/openpgm/openpgm-5.1.118.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=3 +inherit autotools + +DESCRIPTION="OpenPGM is an open source implementation of the Pragmatic General +Multicast (PGM) specification" +HOMEPAGE="http://code.google.com/p/openpgm" +SRC_URI="http://openpgm.googlecode.com/files/libpgm-${PV}~dfsg.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~x86-fbsd" +IUSE="static-libs" + +DEPEND="" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/libpgm-${PV}~dfsg/${PN}/pgm" + +src_prepare() { + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --disable-dependency-tracking +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc "${S}"/../doc/* "${S}"/README + + # remove useless .la files + find "${D}" -name '*.la' -delete + + # remove useless .a (only for non static compilation) + use static-libs || find "${D}" -name '*.a' -delete +} diff --git a/net-libs/openpgm/openpgm-5.2.122.ebuild b/net-libs/openpgm/openpgm-5.2.122.ebuild new file mode 100644 index 000000000000..023987ac0442 --- /dev/null +++ b/net-libs/openpgm/openpgm-5.2.122.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=true +PYTHON_COMPAT=( python2_7 ) + +inherit autotools-utils python-any-r1 + +DESCRIPTION="Open source implementation of the Pragmatic General Multicast specification" +HOMEPAGE="http://code.google.com/p/openpgm" +SRC_URI="http://openpgm.googlecode.com/files/libpgm-${PV}~dfsg.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~x86-fbsd" +IUSE="static-libs" + +DEPEND="${PYTHON_DEPS}" + +S="${WORKDIR}/libpgm-${PV}~dfsg/${PN}/pgm" + +src_install() { + DOCS=( "${S}"/../doc/. "${S}"/README ) + + autotools-utils_src_install +} |