From nobody@FreeBSD.org  Tue Aug 19 08:23:29 2008
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 8B7961065681
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 19 Aug 2008 08:23:29 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 7A69C8FC1C
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 19 Aug 2008 08:23:29 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m7J8NTUA040983
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 19 Aug 2008 08:23:29 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.2/8.14.1/Submit) id m7J8NTUj040982;
	Tue, 19 Aug 2008 08:23:29 GMT
	(envelope-from nobody)
Message-Id: <200808190823.m7J8NTUj040982@www.freebsd.org>
Date: Tue, 19 Aug 2008 08:23:29 GMT
From: Alexey Shuvaev <shuvaev@physik.uni-wuerzburg.de>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [NEW PORT]: devel/slglade: S-Lang binding for libglade
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         126652
>Category:       ports
>Synopsis:       [NEW PORT]: devel/slglade: S-Lang binding for libglade
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    makc
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 19 08:30:01 UTC 2008
>Closed-Date:    Tue Aug 26 14:19:07 UTC 2008
>Last-Modified:  Tue Aug 26 14:19:07 UTC 2008
>Originator:     Alexey Shuvaev
>Release:        8.0-CURRENT
>Organization:
University of Wuerzburg
>Environment:
FreeBSD wep4017.physik.uni-wuerzburg.de 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Aug 17 16:52:44 CEST 2008     root@wep4017.physik.uni-wuerzburg.de:/usr/obj/usr/src/sys/GENERIC  amd64
>Description:
SLglade is a S-Lang module that provides S-Lang bindings
for the libglade library. Used in conjunction with SLgtk,
it allows you to design your GUI with Glade (a GTK+ user interface builder),
save the interface description in a Glade XML file,
and then generate your S-Lang script's graphical interface
directly from the XML at runtime. This should reduce the time spent
developing SLgtk applications considerably, as it eliminates
the tedious job of writing interface-creation code by hand.

This is an update for Christopher Stawarz's SLglade module.

WWW: http://laurent.perez2.free.fr/comp/slang/modules/modules.html
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	slglade
#	slglade/Makefile
#	slglade/pkg-descr
#	slglade/distinfo
#	slglade/pkg-plist
#
echo c - slglade
mkdir -p slglade > /dev/null 2>&1
echo x - slglade/Makefile
sed 's/^X//' >slglade/Makefile << '369d7d87bc2a763cc22e785183fd82ca'
X# New ports collection makefile for:	slglade
X# Date created:		15 Aug 2008
X# Whom:			Alexey Shuvaev <shuvaev@phyisik.uni-wuerzburg.de>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	slglade
XPORTVERSION=	0.3
XCATEGORIES=	devel
XMASTER_SITES=	http://laurent.perez2.free.fr/comp/slang/modules/
XEXTRACT_SUFX=	.tgz
X
XMAINTAINER=	shuvaev@physik.uni-wuerzburg.de
XCOMMENT=	S-Lang binding for libglade
X
XLIB_DEPENDS=	slang.2:${PORTSDIR}/devel/libslang2
XRUN_DEPENDS=	imdisplay:${PORTSDIR}/x11-toolkits/slgtk
X
XUSE_GNOME=	libglade2
XGNU_CONFIGURE=	yes
X
Xpost-patch:
X.if !defined(NOPORTDOCS)
X	@${REINPLACE_CMD} -e 's|doc/slglade|share/&|' ${WRKSRC}/doc/Makefile.in
X.else
X	@${REINPLACE_CMD} -e 's/doc //' ${WRKSRC}/Makefile.in
X.endif
X
Xpost-install:
X.if !defined(NOPORTEXAMPLES)
X	${MKDIR} ${EXAMPLESDIR}
X	${INSTALL_DATA} ${WRKSRC}/examples/*.sl ${EXAMPLESDIR}
X	${INSTALL_DATA} ${WRKSRC}/examples/*.glade ${EXAMPLESDIR}
X.endif
X
X.include <bsd.port.mk>
369d7d87bc2a763cc22e785183fd82ca
echo x - slglade/pkg-descr
sed 's/^X//' >slglade/pkg-descr << 'f2e464648e1b509aad6fedbd115fa170'
XSLglade is a S-Lang module that provides S-Lang bindings
Xfor the libglade library. Used in conjunction with SLgtk,
Xit allows you to design your GUI with Glade (a GTK+ user interface builder),
Xsave the interface description in a Glade XML file,
Xand then generate your S-Lang script's graphical interface
Xdirectly from the XML at runtime. This should reduce the time spent
Xdeveloping SLgtk applications considerably, as it eliminates
Xthe tedious job of writing interface-creation code by hand.
X
XThis is an update for Christopher Stawarz's SLglade module.
X
XWWW: http://laurent.perez2.free.fr/comp/slang/modules/modules.html
f2e464648e1b509aad6fedbd115fa170
echo x - slglade/distinfo
sed 's/^X//' >slglade/distinfo << 'af133576ea19eaaf4a0b348e3026e8ed'
XMD5 (slglade-0.3.tgz) = 9c821c2c9b74c60e3be9f5d6b76ef98d
XSHA256 (slglade-0.3.tgz) = 24205cd48cbfaf81666f42a1420ff34a38f53512c6094d5cb5ded3070b4dc023
XSIZE (slglade-0.3.tgz) = 339329
af133576ea19eaaf4a0b348e3026e8ed
echo x - slglade/pkg-plist
sed 's/^X//' >slglade/pkg-plist << '522259d862189950f4ca82f0ddeb02d0'
Xlib/slang/v2/modules/glade-module.la
Xlib/slang/v2/modules/glade-module.so
X%%PORTDOCS%%%%DOCSDIR%%/slgladefun.txt
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basic.sl
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/buffer_basic.sl
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.glade
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.sl
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/get_widget.sl
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/howdy.glade
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/root_widget.sl
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/signal_connect.sl
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/texteditor.glade
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/texteditor.sl
Xshare/slsh/local-packages/glade.sl
Xshare/slsh/local-packages/slirprc-glade.sl
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
X%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
522259d862189950f4ca82f0ddeb02d0
exit



>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->makc 
Responsible-Changed-By: makc 
Responsible-Changed-When: Tue Aug 26 08:50:41 UTC 2008 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126652 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/126652: commit references a PR
Date: Tue, 26 Aug 2008 13:54:06 +0000 (UTC)

 makc        2008-08-26 13:53:58 UTC
 
   FreeBSD ports repository
 
   Modified files:
     devel                Makefile 
   Added files:
     devel/slglade        Makefile distinfo pkg-descr pkg-plist 
   Log:
   Lglade is a S-Lang module that provides S-Lang bindings
   for the libglade library. Used in conjunction with SLgtk,
   it allows you to design your GUI with Glade (a GTK+ user interface builder),
   save the interface description in a Glade XML file,
   and then generate your S-Lang script's graphical interface
   directly from the XML at runtime. This should reduce the time spent
   developing SLgtk applications considerably, as it eliminates
   the tedious job of writing interface-creation code by hand.
   
   This is an update for Christopher Stawarz's SLglade module.
   
   WWW: http://laurent.perez2.free.fr/comp/slang/modules/modules.html
   
   PR: 126652
   Submitted by: Alexey Shuvaev
   Approved by:    miwi (mentor)
   
   Revision  Changes    Path
   1.3174    +1 -0      ports/devel/Makefile
   1.1       +37 -0     ports/devel/slglade/Makefile (new)
   1.1       +3 -0      ports/devel/slglade/distinfo (new)
   1.1       +12 -0     ports/devel/slglade/pkg-descr (new)
   1.1       +17 -0     ports/devel/slglade/pkg-plist (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: makc 
State-Changed-When: Tue Aug 26 14:19:05 UTC 2008 
State-Changed-Why:  
New port added. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126652 
>Unformatted:
