From 949879265be32ff52de79060d1a8138f67f50924 Mon Sep 17 00:00:00 2001 From: Alin Năstac Date: Sat, 22 Apr 2006 08:29:10 +0000 Subject: Initial import from bug #102224. Package-Manager: portage-2.0.54 --- dev-libs/libvformat/ChangeLog | 10 ++++++++ dev-libs/libvformat/Manifest | 15 ++++++++++++ dev-libs/libvformat/files/digest-libvformat-1.13 | 2 ++ dev-libs/libvformat/files/libvformat-nodoc.patch | 19 +++++++++++++++ dev-libs/libvformat/libvformat-1.13.ebuild | 30 ++++++++++++++++++++++++ dev-libs/libvformat/metadata.xml | 10 ++++++++ 6 files changed, 86 insertions(+) create mode 100644 dev-libs/libvformat/ChangeLog create mode 100644 dev-libs/libvformat/Manifest create mode 100644 dev-libs/libvformat/files/digest-libvformat-1.13 create mode 100644 dev-libs/libvformat/files/libvformat-nodoc.patch create mode 100644 dev-libs/libvformat/libvformat-1.13.ebuild create mode 100644 dev-libs/libvformat/metadata.xml (limited to 'dev-libs/libvformat') diff --git a/dev-libs/libvformat/ChangeLog b/dev-libs/libvformat/ChangeLog new file mode 100644 index 000000000000..b58f18032e50 --- /dev/null +++ b/dev-libs/libvformat/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-libs/libvformat +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libvformat/ChangeLog,v 1.1 2006/04/22 08:29:10 mrness Exp $ + +*libvformat-1.13 (22 Apr 2006) + + 22 Apr 2006; Alin Nastac + +files/libvformat-nodoc.patch, +metadata.xml, +libvformat-1.13.ebuild: + Initial import from bug #102224. + diff --git a/dev-libs/libvformat/Manifest b/dev-libs/libvformat/Manifest new file mode 100644 index 000000000000..d848da151fa0 --- /dev/null +++ b/dev-libs/libvformat/Manifest @@ -0,0 +1,15 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 215c1e3e8808f31349ea5d2cee5a144e ChangeLog 399 +MD5 d63d3979614d4353aa9c3597ee804a50 files/digest-libvformat-1.13 141 +MD5 2a17758141b45012683181757bdf8da0 files/libvformat-nodoc.patch 531 +MD5 19ca14ce02d3ee5bd57d5faf1e9b94d3 libvformat-1.13.ebuild 880 +MD5 818041c85cd218cf09522459f2570994 metadata.xml 342 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.2.2 (GNU/Linux) + +iD8DBQFESelpjG8pv1lIUX4RAvx8AKCHWBDWZOPKWz1LTwJN0FNFROmYwwCgqZH6 +PETPPnW28ClTghs0M4WuWkI= +=Va7y +-----END PGP SIGNATURE----- diff --git a/dev-libs/libvformat/files/digest-libvformat-1.13 b/dev-libs/libvformat/files/digest-libvformat-1.13 new file mode 100644 index 000000000000..0d316522fa29 --- /dev/null +++ b/dev-libs/libvformat/files/digest-libvformat-1.13 @@ -0,0 +1,2 @@ +MD5 f2e8885a34c2eabb69238697e37a2067 libvformat_1.13-3.diff.gz 56584 +MD5 c0926352ec70ed10a427dd691c5eb78e libvformat_1.13.orig.tar.gz 254463 diff --git a/dev-libs/libvformat/files/libvformat-nodoc.patch b/dev-libs/libvformat/files/libvformat-nodoc.patch new file mode 100644 index 000000000000..c575abbedf15 --- /dev/null +++ b/dev-libs/libvformat/files/libvformat-nodoc.patch @@ -0,0 +1,19 @@ +--- Makefile.am.orig 2005-08-12 13:36:39.000000000 +0200 ++++ Makefile.am 2005-08-12 13:36:57.000000000 +0200 +@@ -1,4 +1,4 @@ +-SUBDIRS = src vformat test doc ++SUBDIRS = src vformat + + EXTRA_DIST = common/types.h vf_iface.h + +--- Makefile.in.orig 2005-08-12 13:36:46.000000000 +0200 ++++ Makefile.in 2005-08-12 13:37:15.000000000 +0200 +@@ -66,7 +66,7 @@ + RANLIB = @RANLIB@ + VERSION = @VERSION@ + +-SUBDIRS = src vformat test doc ++SUBDIRS = src vformat + + EXTRA_DIST = common/types.h vf_iface.h + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 diff --git a/dev-libs/libvformat/libvformat-1.13.ebuild b/dev-libs/libvformat/libvformat-1.13.ebuild new file mode 100644 index 000000000000..ea680f1b08f9 --- /dev/null +++ b/dev-libs/libvformat/libvformat-1.13.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libvformat/libvformat-1.13.ebuild,v 1.1 2006/04/22 08:29:10 mrness Exp $ + +inherit eutils + +DESCRIPTION="Library to read and write vcard files" +HOMEPAGE="http://sourceforge.net/projects/vformat/" +SRC_URI="mirror://debian/pool/main/libv/${PN}/${PN}_${PV}.orig.tar.gz + mirror://debian/pool/main/libv/${PN}/${PN}_${PV}-3.diff.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}/${P}.orig" + +src_unpack() { + unpack ${A} + + cd "${S}" + epatch "${DISTDIR}/${PN}_${PV}-3.diff.gz" || die "epatch failed" + # Patch for not installing documentation, because that needs c2man + epatch "${FILESDIR}/${PN}-nodoc.patch" || die "epatch failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" +} diff --git a/dev-libs/libvformat/metadata.xml b/dev-libs/libvformat/metadata.xml new file mode 100644 index 000000000000..6268a7d1f69c --- /dev/null +++ b/dev-libs/libvformat/metadata.xml @@ -0,0 +1,10 @@ + + + + mobile-phone + + mrness@gentoo.org + Alin Nastac + A small library for accessing vformat objects eg VCARD. + + -- cgit v1.2.3-65-gdbad