Add guilib - a very simple GUI framework for use with SDL. Now we have a GUI
for console (SDL_VIDEODRIVER=svgalib) ;).
This commit is contained in:
parent
e577a51be5
commit
560f2229d8
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32897
@ -67,6 +67,7 @@
|
||||
SUBDIR += gtkfig
|
||||
SUBDIR += gtkgraph
|
||||
SUBDIR += gtksee
|
||||
SUBDIR += guilib
|
||||
SUBDIR += gview
|
||||
SUBDIR += gxanim
|
||||
SUBDIR += gyvefigs
|
||||
|
30
graphics/guilib/Makefile
Normal file
30
graphics/guilib/Makefile
Normal file
@ -0,0 +1,30 @@
|
||||
# New ports collection makefile for: guilib
|
||||
# Date created: 20 September 2000
|
||||
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= guilib
|
||||
PORTVERSION= 1.1.0
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.devolution.com/~slouken/SDL/projects/GUIlib/src/
|
||||
DISTNAME= GUIlib-${PORTVERSION}
|
||||
|
||||
MAINTAINER= sobomax@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= SDL-1.0.2:${PORTSDIR}/devel/sdl
|
||||
|
||||
USE_LIBTOOL= yes
|
||||
USE_GMAKE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
post-extract:
|
||||
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
|
||||
's|-release \$$\(LT_RELEASE\)||g'
|
||||
|
||||
post-configure:
|
||||
@${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \
|
||||
${WRKSRC}/libtool
|
||||
|
||||
.include <bsd.port.mk>
|
1
graphics/guilib/distinfo
Normal file
1
graphics/guilib/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (GUIlib-1.1.0.tar.gz) = 8aa848e35ee0a1444b229f117676c2cf
|
1
graphics/guilib/pkg-comment
Normal file
1
graphics/guilib/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
A very simple GUI framework for use with SDL
|
7
graphics/guilib/pkg-descr
Normal file
7
graphics/guilib/pkg-descr
Normal file
@ -0,0 +1,7 @@
|
||||
This is a very simple GUI framework, for use with SDL. It is very flexible, but
|
||||
is by no means a complete windowing system. Feel free to improve it!! :)
|
||||
|
||||
It contains a C++ GUI class with a very rudimentary C interface,
|
||||
and a set of useful widget classes.
|
||||
|
||||
WWW: http://www.devolution.com/~slouken/SDL/projects/GUIlib/index.html
|
18
graphics/guilib/pkg-plist
Normal file
18
graphics/guilib/pkg-plist
Normal file
@ -0,0 +1,18 @@
|
||||
include/GUI/GUI.h
|
||||
include/GUI/GUI_C.h
|
||||
include/GUI/GUI_area.h
|
||||
include/GUI/GUI_button.h
|
||||
include/GUI/GUI_font.h
|
||||
include/GUI/GUI_generic.h
|
||||
include/GUI/GUI_image.h
|
||||
include/GUI/GUI_menu.h
|
||||
include/GUI/GUI_scroll.h
|
||||
include/GUI/GUI_scrollbar.h
|
||||
include/GUI/GUI_status.h
|
||||
include/GUI/GUI_termwin.h
|
||||
include/GUI/GUI_widget.h
|
||||
include/GUI/GUI_widgets.h
|
||||
lib/libGUI.a
|
||||
lib/libGUI.so
|
||||
lib/libGUI.so.0
|
||||
@dirrm include/GUI
|
Loading…
Reference in New Issue
Block a user