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

View File

@@ -0,0 +1 @@
scim-prime is a SCIM IMEngine module for PRIME.

View File

@@ -0,0 +1,27 @@
# $NetBSD: Makefile,v 1.20 2013/06/06 12:54:39 wiz Exp $
#
DISTNAME= scim-prime-1.0.1
PKGREVISION= 17
CATEGORIES= inputmethod
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP:=scim-imengine/29156/}
MAINTAINER= obache@NetBSD.org
HOMEPAGE= http://scim-imengine.sourceforge.jp/
COMMENT= SCIM IMEngine module for PRIME
LICENSE= gnu-gpl-v2
RUBY_VERSION_SUPPORTED= 18
USE_LANGUAGES= c c++
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
USE_TOOLS+= msgfmt pkg-config
GNU_CONFIGURE= yes
USE_SCIM_GTKUTILS= yes
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../inputmethod/prime/buildlink3.mk"
.include "../../inputmethod/scim/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,5 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2009/11/24 12:04:46 obache Exp $
lib/scim-1.0/1.4.0/IMEngine/prime.la
lib/scim-1.0/1.4.0/SetupUI/prime-imengine-setup.la
share/locale/ja/LC_MESSAGES/scim-prime.mo
share/scim/icons/scim-prime.png

View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.2 2013/03/20 06:54:41 obache Exp $
SHA1 (scim-prime-1.0.1.tar.gz) = d4f9cef3a2bc665a515152429a5a30de338bb73d
RMD160 (scim-prime-1.0.1.tar.gz) = 1510d16b30e4ee46198506928b4e69fba7fa07a0
Size (scim-prime-1.0.1.tar.gz) = 556999 bytes
SHA1 (patch-src_prime__connection.cpp) = b1fe74fb3acbe5d90cb189c4f81d9ed8de8244b8

View File

@@ -0,0 +1,24 @@
$NetBSD: patch-src_prime__connection.cpp,v 1.1 2013/03/20 06:54:42 obache Exp $
* prevent to use non portable sig_t
--- src/prime_connection.cpp.orig 2008-01-23 06:13:00.000000000 +0000
+++ src/prime_connection.cpp
@@ -223,7 +223,7 @@ PrimeConnection::close_connection (void)
size_t len, remaining;
len = remaining = strlen (command);
- sig_t prev_handler = signal (SIGPIPE, handle_sigpipe);
+ void (*prev_handler)(int) = signal (SIGPIPE, handle_sigpipe);
#if 0
bool rv;
@@ -531,7 +531,7 @@ PrimeConnection::send_command (const cha
str += "\n";
- sig_t prev_handler = signal (SIGPIPE, handle_sigpipe);
+ void (*prev_handler)(int) = signal (SIGPIPE, handle_sigpipe);
//
// write the command