Import of pkgsrc-2015Q1

This commit is contained in:
2015-04-22 14:34:26 +02:00
committed by Lionel Sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870550 additions and 795435 deletions

View File

@@ -1,14 +1,14 @@
# $NetBSD: Makefile,v 1.18 2012/10/06 14:10:39 asau Exp $
# $NetBSD: Makefile,v 1.19 2014/09/13 11:44:44 shattered Exp $
#
DISTNAME= GUIlib-1.1.0
PKGREVISION= 7
DISTNAME= GUIlib-1.2.1
CATEGORIES= graphics
MASTER_SITES= http://www.libsdl.org/projects/GUIlib/src/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.libsdl.org/projects/GUIlib/
COMMENT= Very simple GUI framework library
LICENSE= public-domain
GNU_CONFIGURE= YES

View File

@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.4 2009/06/14 17:59:04 joerg Exp $
@comment $NetBSD: PLIST,v 1.5 2014/09/13 11:44:44 shattered Exp $
include/GUI/GUI.h
include/GUI/GUI_C.h
include/GUI/GUI_area.h
@@ -6,7 +6,9 @@ include/GUI/GUI_button.h
include/GUI/GUI_font.h
include/GUI/GUI_generic.h
include/GUI/GUI_image.h
include/GUI/GUI_loadimage.h
include/GUI/GUI_menu.h
include/GUI/GUI_output.h
include/GUI/GUI_scroll.h
include/GUI/GUI_scrollbar.h
include/GUI/GUI_status.h
@@ -14,3 +16,4 @@ include/GUI/GUI_termwin.h
include/GUI/GUI_widget.h
include/GUI/GUI_widgets.h
lib/libGUI.la

View File

@@ -1,8 +1,5 @@
$NetBSD: distinfo,v 1.5 2011/08/20 15:33:37 joerg Exp $
$NetBSD: distinfo,v 1.6 2014/09/13 11:44:44 shattered Exp $
SHA1 (GUIlib-1.1.0.tar.gz) = 4ba285dc9902c6204663a935ee3d8600cc921cc9
RMD160 (GUIlib-1.1.0.tar.gz) = aeed496d4d92c0f3a28531fb37def7b69c78109a
Size (GUIlib-1.1.0.tar.gz) = 180318 bytes
SHA1 (patch-aa) = d83443dfb9509bc9e63c100fd64b61294eb87f03
SHA1 (patch-hello.cpp) = 08c5e3387459465c000ae273b4571fc9867a5126
SHA1 (patch-keyboard.cpp) = 450690b3e915636b10609a52eddd320288bb371e
SHA1 (GUIlib-1.2.1.tar.gz) = f2931959de025f9b5635cf148b589f3c4772ea90
RMD160 (GUIlib-1.2.1.tar.gz) = 35a9b426bd877a8feb4c166f5ff4b93f4ceaa18e
Size (GUIlib-1.2.1.tar.gz) = 345042 bytes

View File

@@ -1,17 +0,0 @@
$NetBSD: patch-aa,v 1.1 2007/10/10 22:02:20 rillig Exp $
--- GUI_menu.h.orig 2001-11-20 20:57:12.000000000 +0100
+++ GUI_menu.h 2007-10-11 00:00:53.000000000 +0200
@@ -39,9 +39,9 @@ class GUI_Submenu : public GUI_Button
virtual void AddSubitem(GUI_Menuitem *newitem);
virtual GUI_Menuitem* GetSubItem(int Aid);
- GUI_status GUI_Submenu:: MouseDown(int x, int y, int button);
- GUI_status GUI_Submenu::MouseUp(int x,int y,int button);
- GUI_status GUI_Submenu::MouseMotion(int x,int y,Uint8 state);
+ GUI_status MouseDown(int x, int y, int button);
+ GUI_status MouseUp(int x,int y,int button);
+ GUI_status MouseMotion(int x,int y,Uint8 state);
inline virtual int GetSubmenuId()
{return submenuid;}

View File

@@ -1,13 +0,0 @@
$NetBSD: patch-hello.cpp,v 1.1 2011/08/20 15:33:37 joerg Exp $
--- hello.cpp.orig 2000-04-06 04:48:53.000000000 +0000
+++ hello.cpp
@@ -78,7 +78,7 @@ void Output(SDL_Surface *screen, const c
}
}
-main(int argc, char *argv[])
+int main(int argc, char *argv[])
{
SDL_Surface *screen;
int x, y, i;

View File

@@ -1,13 +0,0 @@
$NetBSD: patch-keyboard.cpp,v 1.1 2011/08/20 15:33:37 joerg Exp $
--- keyboard.cpp.orig 2011-08-20 13:29:08.000000000 +0000
+++ keyboard.cpp
@@ -72,7 +72,7 @@ protected:
}
};
-main(int argc, char *argv[])
+int main(int argc, char *argv[])
{
SDL_Surface *screen;
GUI_TermWin *output;