diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-05-07 00:55:52 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-05-07 00:55:52 +0000 |
commit | dc3b8cdaf81e36c81661342493af89a3a5512c23 (patch) | |
tree | 31cc7ad70174a929b22c7a10e38cd2b7284e5872 /net-libs/roadrunner | |
parent | Roadrunner licence added for net-libs/roadrunner (diff) | |
download | historical-dc3b8cdaf81e36c81661342493af89a3a5512c23.tar.gz historical-dc3b8cdaf81e36c81661342493af89a3a5512c23.tar.bz2 historical-dc3b8cdaf81e36c81661342493af89a3a5512c23.zip |
inital import thanks to Robert Varga <nite@hq.alert.sk> in bug @48467
Diffstat (limited to 'net-libs/roadrunner')
-rw-r--r-- | net-libs/roadrunner/ChangeLog | 10 | ||||
-rw-r--r-- | net-libs/roadrunner/Manifest | 4 | ||||
-rw-r--r-- | net-libs/roadrunner/files/digest-roadrunner-0.9.1 | 1 | ||||
-rw-r--r-- | net-libs/roadrunner/metadata.xml | 12 | ||||
-rw-r--r-- | net-libs/roadrunner/roadrunner-0.9.1.ebuild | 49 |
5 files changed, 76 insertions, 0 deletions
diff --git a/net-libs/roadrunner/ChangeLog b/net-libs/roadrunner/ChangeLog new file mode 100644 index 000000000000..aa99d04c988e --- /dev/null +++ b/net-libs/roadrunner/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-libs/roadrunner +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/roadrunner/ChangeLog,v 1.1 2004/05/07 00:55:52 dragonheart Exp $ + +*roadrunner-0.9.1 (07 May 2004) + + 07 May 2004; Daniel Black <dragonheart@gentoo.org> +metadata.xml, + +roadrunner-0.9.1.ebuild: + Initial import thanks to Robert Varga <nite@hq.alert.sk> in bug #48467 + diff --git a/net-libs/roadrunner/Manifest b/net-libs/roadrunner/Manifest new file mode 100644 index 000000000000..70ad9a2c1281 --- /dev/null +++ b/net-libs/roadrunner/Manifest @@ -0,0 +1,4 @@ +MD5 bd4a4a9c2580c2faa433e22a6f530857 roadrunner-0.9.1.ebuild 1284 +MD5 6d796b061ed1c1337ef157a5f74dab35 metadata.xml 403 +MD5 b5fa1b16cd3f889e285fd25c1684df96 ChangeLog 428 +MD5 82f78ec5979c1e96787a6983052132dc files/digest-roadrunner-0.9.1 68 diff --git a/net-libs/roadrunner/files/digest-roadrunner-0.9.1 b/net-libs/roadrunner/files/digest-roadrunner-0.9.1 new file mode 100644 index 000000000000..2ae3188829bc --- /dev/null +++ b/net-libs/roadrunner/files/digest-roadrunner-0.9.1 @@ -0,0 +1 @@ +MD5 089640ae9f023b66b6da532a06452c64 roadrunner-0.9.1.tar.gz 338564 diff --git a/net-libs/roadrunner/metadata.xml b/net-libs/roadrunner/metadata.xml new file mode 100644 index 000000000000..b9fc2b9c6f11 --- /dev/null +++ b/net-libs/roadrunner/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>dragonheart@gentoo.org</email> + <name>Daniel Black</name> + <description>A user ebuild that I felt obliged to include. Please take over if you want +it</description> +</maintainer> +<longdescription></longdescription> +</pkgmetadata> diff --git a/net-libs/roadrunner/roadrunner-0.9.1.ebuild b/net-libs/roadrunner/roadrunner-0.9.1.ebuild new file mode 100644 index 000000000000..2c8462409ab4 --- /dev/null +++ b/net-libs/roadrunner/roadrunner-0.9.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/roadrunner/roadrunner-0.9.1.ebuild,v 1.1 2004/05/07 00:55:52 dragonheart Exp $ + + +# EBuild details +DESCRIPTION="RoadRunner library provides API for using Blocks Extensible Exchange Protocol" +HOMEPAGE="http://rr.codefactory.se" +SRC_URI="ftp://ftp.codefactory.se/pub/RoadRunner/source/roadrunner/roadrunner-${PV}.tar.gz" +LICENSE="Roadrunner" +SLOT="0" +KEYWORDS="~x86" + +# static = also build a static library +# doc = include documentation +# debug = include debug and debug-net +IUSE="static doc debug" + +use debug && RESTRICT="${RESTRICT} nostrip" + +RDEPEND=">=dev-libs/glib-2.2.1 + >=dev-libs/libxml2-2.5.11" + +# During build we also need pkgconfig and possibly gtk-doc +DEPEND=">=sys-devel/automake-1.4 + sys-devel/libtool + sys-devel/gcc + sys-apps/sed + >=dev-libs/glib-2.2.1 + >=dev-libs/libxml2-2.5.11 + >=dev-util/pkgconfig-0.15.0 + doc? ( >=dev-util/gtk-doc-1.2 )" + +src_compile() { + econf \ + `use_enable static` \ + `use_enable debug` \ + `use_enable debug debug-net` \ + `use_enable doc gtk-doc` \ + || die "configure failed" + + emake || die "emake failed" +} + +src_install() { + # Seems that the Makefiles are OK + einstall || die +} + |