svn commit: r345902 - in head/misc: . libisocodes

Koop Mast kwm at FreeBSD.org
Mon Feb 24 22:15:03 UTC 2014


Author: kwm
Date: Mon Feb 24 22:15:01 2014
New Revision: 345902
URL: http://svnweb.freebsd.org/changeset/ports/345902
QAT: https://qat.redports.org/buildarchive/r345902/

Log:
  Add libisocodes.
  
  A interaction library for iso-codes 3.x and 4.x (when released).

Added:
  head/misc/libisocodes/
  head/misc/libisocodes/Makefile   (contents, props changed)
  head/misc/libisocodes/distinfo   (contents, props changed)
  head/misc/libisocodes/pkg-descr   (contents, props changed)
  head/misc/libisocodes/pkg-plist   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Mon Feb 24 21:57:29 2014	(r345901)
+++ head/misc/Makefile	Mon Feb 24 22:15:01 2014	(r345902)
@@ -249,6 +249,7 @@
     SUBDIR += lesspipe
     SUBDIR += libeatmydata
     SUBDIR += libhome
+    SUBDIR += libisocodes
     SUBDIR += libkdeedu
     SUBDIR += libmetalink
     SUBDIR += libpri

Added: head/misc/libisocodes/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/libisocodes/Makefile	Mon Feb 24 22:15:01 2014	(r345902)
@@ -0,0 +1,32 @@
+# Created by: Koop Mast <kwm at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	libisocodes
+PORTVERSION=	1.0
+CATEGORIES=	misc
+MASTER_SITES=	http://pkg-isocodes.alioth.debian.org/downloads/
+
+MAINTAINER=	kwm at FreeBSD.org
+COMMENT=	Interaction library for iso-codes
+
+LICENSE=	GPLv3
+
+BUILD_DEPENDS=	valac:${PORTSDIR}/lang/vala
+LIB_DEPENDS=	libgee.so:${PORTSDIR}/devel/libgee06
+RUN_DEPENDS=	iso-codes>=0:${PORTSDIR}/misc/iso-codes
+
+USE_XZ=		yes
+USES=		gettext gmake libtool pathfix pkgconfig
+USE_GNOME=	glib20 gnomehier introspection:build libxml2
+GNU_CONFIGURE=	yes
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|/usr/share/xml/|${LOCALBASE}/share/xml/|g' \
+		${WRKSRC}/src/iso_15924.* ${WRKSRC}/src/iso_3166* \
+		${WRKSRC}/src/iso_4217.* ${WRKSRC}/src/iso_639* \
+		${WRKSRC}/src/isocodes.* ${WRKSRC}/tests/test_iso_*.vala
+
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libisocodes.so.0.0.0
+
+.include <bsd.port.mk>

Added: head/misc/libisocodes/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/libisocodes/distinfo	Mon Feb 24 22:15:01 2014	(r345902)
@@ -0,0 +1,2 @@
+SHA256 (libisocodes-1.0.tar.xz) = 215fa3c4dc87490ff96bf76c61e1bda86c042b1626fad5311542791bd7aa570f
+SIZE (libisocodes-1.0.tar.xz) = 284856

Added: head/misc/libisocodes/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/libisocodes/pkg-descr	Mon Feb 24 22:15:01 2014	(r345902)
@@ -0,0 +1,10 @@
+This library can be used to easily access XML data of the iso-codes
+package. It will provide an abstraction layer to handle both the
+version 3 and the upcoming version 4 of iso-codes. Moreover, all
+available translations can be used as well.
+
+This library makes use of the GObject introspection features, so that
+it is accessible from a variety of programming languages, for example
+C, Vala, Ruby, Python, Perl, Lua, JavaScript, PHP and many more.
+
+WWW: http://pkg-isocodes.alioth.debian.org/

Added: head/misc/libisocodes/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/libisocodes/pkg-plist	Mon Feb 24 22:15:01 2014	(r345902)
@@ -0,0 +1,17 @@
+include/libisocodes.h
+lib/girepository-1.0/libisocodes-1.0.typelib
+lib/libisocodes.a
+lib/libisocodes.la
+lib/libisocodes.so
+lib/libisocodes.so.0
+lib/libisocodes.so.0.0.0
+libdata/pkgconfig/libisocodes.pc
+share/gir-1.0/libisocodes-1.0.gir
+share/locale/de/LC_MESSAGES/libisocodes.mo
+share/locale/en at boldquot/LC_MESSAGES/libisocodes.mo
+share/locale/en at quot/LC_MESSAGES/libisocodes.mo
+share/vala/vapi/libisocodes.vapi
+ at dirrmtry share/locale/en at quot/LC_MESSAGES
+ at dirrmtry share/locale/en at quot
+ at dirrmtry share/locale/en at boldquot/LC_MESSAGES
+ at dirrmtry share/locale/en at boldquot


More information about the svn-ports-all mailing list