Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -1,8 +1,9 @@
# $NetBSD: Makefile,v 1.68 2013/06/23 01:09:43 tsutsui Exp $
# $NetBSD: Makefile,v 1.78 2014/03/26 14:27:22 taca Exp $
#
DISTNAME= mikutter.0.2.2.1264
DISTNAME= mikutter.0.2.2.1537
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/./-/}
PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= http://mikutter.hachune.net/bin/
@@ -11,22 +12,19 @@ HOMEPAGE= http://mikutter.hachune.net/
COMMENT= Simple, powerful, and moeful twitter client
LICENSE= gnu-gpl-v3 AND cc-by-sa-v3.0
RUBY_VERSION_SUPPORTED= 193
RUBY_VERSION_SUPPORTED= 193 200 21
.include "../../lang/ruby/rubyversion.mk"
DEPENDS+= xdg-utils-[0-9]*:../../misc/xdg-utils
DEPENDS+= ${RUBY_PKGPREFIX}-hmac>=0.4.0:../../security/ruby-hmac
DEPENDS+= ${RUBY_PKGPREFIX}-gnome2-gtk>=1.2.5:../../x11/ruby-gnome2-gtk
DEPENDS+= ${RUBY_PKGPREFIX}-rcairo>=1.10.0:../../graphics/ruby-rcairo
DEPENDS+= ${RUBY_PKGPREFIX}-gnome2-gtk>=2.2.0:../../x11/ruby-gnome2-gtk
DEPENDS+= ${RUBY_PKGPREFIX}-oauth>=0.4.7:../../security/ruby-oauth
DEPENDS+= ${RUBY_PKGPREFIX}-memoize>=1.3.1:../../devel/ruby-memoize
DEPENDS+= ${RUBY_PKGPREFIX}-bsearch>=1.5:../../devel/ruby-bsearch
DEPENDS+= ${RUBY_PKGPREFIX}-addressable-[0-9]*:../../net/ruby-addressable
DEPENDS+= ${RUBY_PKGPREFIX}-typed-array-[0-9]*:../../misc/ruby-typed-array
DEPENDS+= ${RUBY_PKGPREFIX}-addressable>=2.3:../../net/ruby-addressable
DEPENDS+= ${RUBY_PKGPREFIX}-typed-array>=0.1:../../misc/ruby-typed-array
#DEPENDS+= ${RUBY_PKGPREFIX}-test-unit-[0-9]*:../../devel/ruby-test-unit
# notify-send
DEPENDS+= {libnotify-[0-9]*,libnotify07-[0-9]*}:../../sysutils/libnotify
WRKSRC= ${WRKDIR}/mikutter
USE_LANGUAGES= # none
@@ -47,10 +45,13 @@ do-build:
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/mikutter.rb ${DESTDIR}${PREFIX}/share/mikutter
${INSTALL_DATA} ${WRKSRC}/Gemfile ${DESTDIR}${PREFIX}/share/mikutter
cd ${WRKSRC} && pax -rwpp -s '/.*\.orig//' core devel plugin ${DESTDIR}${PREFIX}/share/mikutter
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/mikutter
${INSTALL_SCRIPT} ${WRKDIR}/mikutter.sh ${DESTDIR}${PREFIX}/bin/mikutter
${INSTALL_DATA} ${WRKDIR}/desktop ${DESTDIR}${PREFIX}/share/applications/mikutter.desktop
RUBY_JSON_TYPE= pure
RUBY_JSON_REQD= 1.8
.include "../../lang/ruby/json.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,7 +1,8 @@
@comment $NetBSD: PLIST,v 1.23 2013/05/15 11:24:14 obache Exp $
@comment $NetBSD: PLIST,v 1.25 2014/03/11 12:16:39 obache Exp $
bin/mikutter
share/applications/mikutter.desktop
share/doc/mikutter/README
share/mikutter/Gemfile
share/mikutter/core/boot/check_config_permission.rb
share/mikutter/core/boot/load_plugin.rb
share/mikutter/core/boot/mainloop.rb
@@ -245,6 +246,7 @@ share/mikutter/core/retriever.rb
share/mikutter/core/serialthread.rb
share/mikutter/core/service.rb
share/mikutter/core/skin.rb
share/mikutter/core/skin/data/activity.png
share/mikutter/core/skin/data/arrow_followed.png
share/mikutter/core/skin/data/arrow_following.png
share/mikutter/core/skin/data/arrow_notfollowed.png

View File

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.60 2013/06/16 08:58:06 obache Exp $
$NetBSD: distinfo,v 1.68 2014/03/11 12:16:39 obache Exp $
SHA1 (mikutter.0.2.2.1264.tar.gz) = f93757ca51f3fe9f555df32c86c2ed7021992887
RMD160 (mikutter.0.2.2.1264.tar.gz) = bd3f4a49eb8d96a225b4cc704115995fe390e42a
Size (mikutter.0.2.2.1264.tar.gz) = 2318031 bytes
SHA1 (mikutter.0.2.2.1537.tar.gz) = ae42aeca43f1b740137c1d1c314437e3b7f53ca3
RMD160 (mikutter.0.2.2.1537.tar.gz) = d2f127e902080af87bec45cf98ca100cba6371d6
Size (mikutter.0.2.2.1537.tar.gz) = 2334837 bytes
SHA1 (patch-core_plugin_libnotify_rnotify.rb) = 0bb5630f4411d11ad188c722fb1d14e2d6748d17

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-core_plugin_libnotify_rnotify.rb,v 1.1 2013/08/14 13:06:13 obache Exp $
* fixes module name
--- core/plugin/libnotify/rnotify.rb.orig 2013-08-13 23:22:37.000000000 +0000
+++ core/plugin/libnotify/rnotify.rb
@@ -14,7 +14,7 @@ Plugin::create(:libnotify) do
end
if user
- icon = Gtk::WebImageLoader.local_path(user[:profile_image_url])
+ icon = Gdk::WebImageLoader.local_path(user[:profile_image_url])
title = "@#{user[:idname]} (#{user[:name]})"
end