diff options
author | khorben <khorben@pkgsrc.org> | 2016-02-20 16:00:28 +0000 |
---|---|---|
committer | khorben <khorben@pkgsrc.org> | 2016-02-20 16:00:28 +0000 |
commit | be5631a3f5b6d064cd807e99a215afc945e08d23 (patch) | |
tree | 8b456ff4b7e55fee3b18e0c4aabb890bac925fb1 /x11 | |
parent | 2fa0e5818087aa857b74d351692367e3502f54fb (diff) | |
download | pkgsrc-be5631a3f5b6d064cd807e99a215afc945e08d23.tar.gz |
Package DeforaOS Notes 0.1.0
This release brings:
- support for the latest libSystem
- support for Gtk+ 3
Diffstat (limited to 'x11')
-rw-r--r-- | x11/deforaos-notes/Makefile | 8 | ||||
-rw-r--r-- | x11/deforaos-notes/distinfo | 12 | ||||
-rw-r--r-- | x11/deforaos-notes/patches/patch-src_noteedit.c | 14 |
3 files changed, 24 insertions, 10 deletions
diff --git a/x11/deforaos-notes/Makefile b/x11/deforaos-notes/Makefile index 30a178ce4fe..b1c35e487b1 100644 --- a/x11/deforaos-notes/Makefile +++ b/x11/deforaos-notes/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.1 2015/09/01 00:28:03 khorben Exp $ +# $NetBSD: Makefile,v 1.2 2016/02/20 16:00:28 khorben Exp $ -DISTNAME= Notes-0.0.0 -PKGNAME= deforaos-notes-0.0.0 +DISTNAME= Notes-0.1.0 +PKGNAME= deforaos-notes-0.1.0 CATEGORIES= x11 -MASTER_SITES= http://www.defora.org/os/download/download/4374/ +MASTER_SITES= http://www.defora.org/os/download/download/4428/ MAINTAINER= khorben@defora.org HOMEPAGE= http://www.defora.org/ diff --git a/x11/deforaos-notes/distinfo b/x11/deforaos-notes/distinfo index 4f08e2c117b..73528931414 100644 --- a/x11/deforaos-notes/distinfo +++ b/x11/deforaos-notes/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.2 2015/11/04 03:28:27 agc Exp $ +$NetBSD: distinfo,v 1.3 2016/02/20 16:00:28 khorben Exp $ -SHA1 (Notes-0.0.0.tar.gz) = 662f2cfe9cea30f7bf00c421d4dca8c905e8cd74 -RMD160 (Notes-0.0.0.tar.gz) = 72efd9bd7f915a27a9baf168301a60e1a886a717 -SHA512 (Notes-0.0.0.tar.gz) = 49d0fb451defc4269a274ac2f84c085b452a931e3cc03677cff8984aa9842d37693c55e5247b518c93f1ebb83ea43fb085e93809a74d3c9af624c7ccdc77d63e -Size (Notes-0.0.0.tar.gz) = 16666 bytes -SHA1 (patch-tools_Makefile) = 1a805aef9fad94a5420edf75001b218393f19e57 +SHA1 (Notes-0.1.0.tar.gz) = b7235c70731f6588ff0ad631144ccd7322749aed +RMD160 (Notes-0.1.0.tar.gz) = d33ca252084619a8d49cba4268fb9de93dcb51a3 +SHA512 (Notes-0.1.0.tar.gz) = ab28a00acebc827a6860a299d9d65c3171ad6de656dd1372d9853bd29d0c1de11382fe6f1bd046beaa699e512b733194c7185a6bd4ee8e1127187c6ffc4acb82 +Size (Notes-0.1.0.tar.gz) = 16853 bytes +SHA1 (patch-src_noteedit.c) = 14ff9d07788c028150ddd3497889bdc7ef7c8564 diff --git a/x11/deforaos-notes/patches/patch-src_noteedit.c b/x11/deforaos-notes/patches/patch-src_noteedit.c new file mode 100644 index 00000000000..16144fb6a5f --- /dev/null +++ b/x11/deforaos-notes/patches/patch-src_noteedit.c @@ -0,0 +1,14 @@ +$NetBSD: patch-src_noteedit.c,v 1.1 2016/02/20 16:00:28 khorben Exp $ + +Fix build with Gtk+ 2 + +--- src/noteedit.c.orig 2016-02-20 15:45:01.000000000 +0000 ++++ src/noteedit.c +@@ -31,6 +31,7 @@ + #include <stdlib.h> + #include <libintl.h> + #include <gtk/gtk.h> ++#include <Desktop.h> + #include "noteedit.h" + #define _(string) gettext(string) + |