Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
libgpod is a library for accessing iPod databases and files.
+34
View File
@@ -0,0 +1,34 @@
# $NetBSD: Makefile,v 1.37 2013/06/06 12:53:55 wiz Exp $
DISTNAME= libgpod-0.8.2
PKGREVISION= 14
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gtkpod/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= srp@tworoads.net
HOMEPAGE= http://www.gtkpod.org/wiki/Libgpod
COMMENT= Library for accessing iPod onboard databases, playlists, etc
LICENSE= gnu-lgpl-v2
PKGCONFIG_OVERRIDE= libgpod-1.0.pc.in
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
USE_TOOLS+= gmake intltool msgfmt pkg-config
GNU_CONFIGURE= yes
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "Linux"
CONFIGURE_ARGS+= --disable-udev
.endif
.include "../../databases/sqlite3/buildlink3.mk"
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.15.0
.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../textproc/libplist/buildlink3.mk"
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
+38
View File
@@ -0,0 +1,38 @@
@comment $NetBSD: PLIST,v 1.7 2011/11/21 19:39:13 shattered Exp $
bin/ipod-read-sysinfo-extended
include/gpod-1.0/gpod/itdb.h
lib/libgpod.la
lib/pkgconfig/libgpod-1.0.pc
lib/pkgconfig/libgpod-sharp.pc
share/gtk-doc/html/libgpod/ch01.html
share/gtk-doc/html/libgpod/home.png
share/gtk-doc/html/libgpod/index.html
share/gtk-doc/html/libgpod/index.sgml
share/gtk-doc/html/libgpod/itunesdb.html
share/gtk-doc/html/libgpod/left.png
share/gtk-doc/html/libgpod/libgpod-Artwork.html
share/gtk-doc/html/libgpod/libgpod-Chapter-Data.html
share/gtk-doc/html/libgpod/libgpod-Device.html
share/gtk-doc/html/libgpod/libgpod-File-handling-functions.html
share/gtk-doc/html/libgpod/libgpod-Low-level-functions.html
share/gtk-doc/html/libgpod/libgpod-Photo-database.html
share/gtk-doc/html/libgpod/libgpod-Playlists.html
share/gtk-doc/html/libgpod/libgpod-Smart-Playlists.html
share/gtk-doc/html/libgpod/libgpod-The-Itdb-iTunesDB-structure.html
share/gtk-doc/html/libgpod/libgpod-Time-handling.html
share/gtk-doc/html/libgpod/libgpod-Tracks.html
share/gtk-doc/html/libgpod/libgpod.devhelp
share/gtk-doc/html/libgpod/libgpod.devhelp2
share/gtk-doc/html/libgpod/photodb.html
share/gtk-doc/html/libgpod/right.png
share/gtk-doc/html/libgpod/style.css
share/gtk-doc/html/libgpod/up.png
share/locale/de/LC_MESSAGES/libgpod.mo
share/locale/es/LC_MESSAGES/libgpod.mo
share/locale/fr/LC_MESSAGES/libgpod.mo
share/locale/he/LC_MESSAGES/libgpod.mo
share/locale/it/LC_MESSAGES/libgpod.mo
share/locale/ja/LC_MESSAGES/libgpod.mo
share/locale/ro/LC_MESSAGES/libgpod.mo
share/locale/sv/LC_MESSAGES/libgpod.mo
share/locale/zh_CN/LC_MESSAGES/libgpod.mo
+16
View File
@@ -0,0 +1,16 @@
# $NetBSD: buildlink3.mk,v 1.20 2013/06/06 12:53:55 wiz Exp $
BUILDLINK_TREE+= libgpod
.if !defined(LIBGPOD_BUILDLINK3_MK)
LIBGPOD_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.libgpod+= libgpod>=0.3.2
BUILDLINK_ABI_DEPENDS.libgpod+= libgpod>=0.8.2nb14
BUILDLINK_PKGSRCDIR.libgpod?= ../../audio/libgpod
.include "../../devel/glib2/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
.endif # LIBGPOD_BUILDLINK3_MK
BUILDLINK_TREE+= -libgpod
+6
View File
@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.10 2012/10/21 11:04:41 shattered Exp $
SHA1 (libgpod-0.8.2.tar.bz2) = f9ba70cd6f00ae59cdc6a43cc72c409a4d27606e
RMD160 (libgpod-0.8.2.tar.bz2) = 63e60211cf0e52a60eade6d39e12b6fab023fccb
Size (libgpod-0.8.2.tar.bz2) = 777945 bytes
SHA1 (patch-aa) = 9b90cf13b94259b50fcab19f1041a4aa41eab8c5
+17
View File
@@ -0,0 +1,17 @@
$NetBSD: patch-aa,v 1.5 2012/10/21 11:04:42 shattered Exp $
--- tools/generic-callout.c.orig 2011-07-24 11:03:29.000000000 +0000
+++ tools/generic-callout.c
@@ -601,7 +601,12 @@ static char *mount_ipod (const char *dev
return NULL;
}
g_assert (tmpname == filename);
+#if !defined(__linux__)
+ result = -1;
+#else
result = mount (dev_path, tmpname, fstype, 0, NULL);
+#endif
+
if (result != 0) {
g_debug("failed to mount device %s at %s: %s",
dev_path, tmpname, strerror(errno));