diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-03-30 15:42:33 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-03-30 15:42:33 +0000 |
commit | a2ff06683447487af320c42ed2bad378b6a6ad4f (patch) | |
tree | 46965992afa854c7369c7672ee19ff11a61168eb /app-pda/fusepod | |
parent | Stable for HPPA (bug #358679). (diff) | |
download | gentoo-2-a2ff06683447487af320c42ed2bad378b6a6ad4f.tar.gz gentoo-2-a2ff06683447487af320c42ed2bad378b6a6ad4f.tar.bz2 gentoo-2-a2ff06683447487af320c42ed2bad378b6a6ad4f.zip |
Initial commit, see ChangeLog for details
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'app-pda/fusepod')
-rw-r--r-- | app-pda/fusepod/ChangeLog | 10 | ||||
-rw-r--r-- | app-pda/fusepod/files/fusepod-0.5.2-missing_include.patch | 13 | ||||
-rw-r--r-- | app-pda/fusepod/fusepod-0.5.2.ebuild | 27 | ||||
-rw-r--r-- | app-pda/fusepod/metadata.xml | 5 |
4 files changed, 55 insertions, 0 deletions
diff --git a/app-pda/fusepod/ChangeLog b/app-pda/fusepod/ChangeLog new file mode 100644 index 000000000000..2cb30d0eef21 --- /dev/null +++ b/app-pda/fusepod/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-pda/fusepod +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/fusepod/ChangeLog,v 1.1 2011/03/30 15:42:33 ssuominen Exp $ + +*fusepod-0.5.2 (30 Mar 2011) + + 30 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> +fusepod-0.5.2.ebuild, + +files/fusepod-0.5.2-missing_include.patch: + Initial commit wrt #136624 by Keegan Carruthers-Smith and Dirk Vanden Boer. + diff --git a/app-pda/fusepod/files/fusepod-0.5.2-missing_include.patch b/app-pda/fusepod/files/fusepod-0.5.2-missing_include.patch new file mode 100644 index 000000000000..1a1bc8415c91 --- /dev/null +++ b/app-pda/fusepod/files/fusepod-0.5.2-missing_include.patch @@ -0,0 +1,13 @@ +diff -ur fusepod-0.5.2.orig/src/fusepod_util.h fusepod-0.5.2/src/fusepod_util.h +--- fusepod-0.5.2.orig/src/fusepod_util.h 2006-06-27 01:06:32.000000000 +0300 ++++ fusepod-0.5.2/src/fusepod_util.h 2011-03-30 18:39:06.000000000 +0300 +@@ -15,6 +15,9 @@ + #ifndef _FUSEPOD_UTIL_H_ + #define _FUSEPOD_UTIL_H_ + ++#include <stdio.h> /* sprintf */ ++#include <string.h> /* strcasecmp */ ++ + #include <vector> + #include <string> + diff --git a/app-pda/fusepod/fusepod-0.5.2.ebuild b/app-pda/fusepod/fusepod-0.5.2.ebuild new file mode 100644 index 000000000000..450d6050f240 --- /dev/null +++ b/app-pda/fusepod/fusepod-0.5.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/fusepod/fusepod-0.5.2.ebuild,v 1.1 2011/03/30 15:42:33 ssuominen Exp $ + +EAPI=4 +inherit eutils + +DESCRIPTION="A userspace filesystem which mounts your iPod into a directory" +HOMEPAGE="http://sourceforge.net/projects/fusepod/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-libs/libgpod + media-libs/taglib + sys-fs/fuse" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +DOCS="AUTHORS NEWS README README.fuse THANKS TODO" + +src_prepare() { + epatch "${FILESDIR}"/${P}-missing_include.patch +} diff --git a/app-pda/fusepod/metadata.xml b/app-pda/fusepod/metadata.xml new file mode 100644 index 000000000000..228404d3a4b2 --- /dev/null +++ b/app-pda/fusepod/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>pda</herd> +</pkgmetadata> |