summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2006-04-22 08:29:10 +0000
committerAlin Năstac <mrness@gentoo.org>2006-04-22 08:29:10 +0000
commit7013dc0bdeda592a6dadcb29ef980cd250c34503 (patch)
treefbc9a6a41ec6ad5e82b4a71ebf7ccb9c5e0181b3 /dev-libs
parentStable on ppc64; bug #130535 (diff)
downloadgentoo-2-7013dc0bdeda592a6dadcb29ef980cd250c34503.tar.gz
gentoo-2-7013dc0bdeda592a6dadcb29ef980cd250c34503.tar.bz2
gentoo-2-7013dc0bdeda592a6dadcb29ef980cd250c34503.zip
Initial import from bug #102224.
(Portage version: 2.0.54)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libvformat/ChangeLog10
-rw-r--r--dev-libs/libvformat/Manifest3
-rw-r--r--dev-libs/libvformat/files/digest-libvformat-1.132
-rw-r--r--dev-libs/libvformat/files/libvformat-nodoc.patch19
-rw-r--r--dev-libs/libvformat/libvformat-1.13.ebuild30
-rw-r--r--dev-libs/libvformat/metadata.xml10
6 files changed, 74 insertions, 0 deletions
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 <mrness@gentoo.org>
+ +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..69f12702bf06
--- /dev/null
+++ b/dev-libs/libvformat/Manifest
@@ -0,0 +1,3 @@
+MD5 d63d3979614d4353aa9c3597ee804a50 files/digest-libvformat-1.13 141
+MD5 2a17758141b45012683181757bdf8da0 files/libvformat-nodoc.patch 531
+MD5 0a4fbe4b094637ee4d999e67643b5847 libvformat-1.13.ebuild 841
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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>mobile-phone</herd>
+ <maintainer>
+ <email>mrness@gentoo.org</email>
+ <name>Alin Nastac</name>
+ <description>A small library for accessing vformat objects eg VCARD.</description>
+ </maintainer>
+</pkgmetadata>