From nobody@FreeBSD.org  Sat Sep  4 05:22:13 2010
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 64F0410656D3
	for <freebsd-gnats-submit@FreeBSD.org>; Sat,  4 Sep 2010 05:22:13 +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 52E828FC08
	for <freebsd-gnats-submit@FreeBSD.org>; Sat,  4 Sep 2010 05:22:13 +0000 (UTC)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o845MD1w062090
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 4 Sep 2010 05:22:13 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id o845MDCb062089;
	Sat, 4 Sep 2010 05:22:13 GMT
	(envelope-from nobody)
Message-Id: <201009040522.o845MDCb062089@www.freebsd.org>
Date: Sat, 4 Sep 2010 05:22:13 GMT
From: Winston Weinert <winstonw@lavabit.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: New port: x11/tabbed Simple generic tabbed fronted to xembed aware applications
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         150266
>Category:       ports
>Synopsis:       New port: x11/tabbed Simple generic tabbed fronted to xembed aware applications
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Sep 04 05:30:05 UTC 2010
>Closed-Date:    Sat Jan 29 14:24:08 UTC 2011
>Last-Modified:  Sat Jan 29 14:30:17 UTC 2011
>Originator:     Winston Weinert
>Release:        8.1-Release
>Organization:
>Environment:
FreeBSD ironwood.local 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010     root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
>Description:
Simple generic tabbed fronted to xembed aware applications
>How-To-Repeat:
Attempt to install tabbed from ports.
>Fix:
See attachment: tabbed.txt, which is a applications/shar file, not a text file!

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:
#
#	tabbed
#	tabbed/Makefile
#	tabbed/files
#	tabbed/files/patch-config.mk
#	tabbed/pkg-descr
#	tabbed/distinfo
#
echo c - tabbed
mkdir -p tabbed > /dev/null 2>&1
echo x - tabbed/Makefile
sed 's/^X//' >tabbed/Makefile << '0bd49f5bc834720d0a3f56c85a2ed1a7'
X# New ports collection makefile for:   tabbed
X# Date created:                September 03, 2010
X# Whom:                        Winston Weinert <winstonw@lavabit.com>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	tabbed
XPORTVERSION=	0.3
XCATEGORIES=	x11
XMASTER_SITES=	http://dl.suckless.org/tools/
X
XMAINTAINER=	winstonw@lavabit.com
XCOMMENT=	Simple generic tabbed fronted to xembed aware applications
X
XUSE_XORG=	x11
X
XMAN1=		tabbed.1
XPLIST_FILES=	bin/tabbed
XPORTDOCS=	LICENSE README
X
Xpre-everything::
X	@${ECHO_MSG} "You can build tabbed with your own config.h using the TABBED_CONF knob:"
X	@${ECHO_MSG} "make TABBED_CONF=/path/to/tabbed/config.h install clean"
X
Xpost-extract:
X.if defined(TABBED_CONF)
X	@${ECHO_MSG} "creating config.h from ${TABBED_CONF}"
X	@${CP} ${TABBED_CONF} ${WRKSRC}/config.h
X.endif
X
Xpost-install:
X.if !defined(NOPORTDOCS)
X	@${ECHO_MSG} "installing additional documentation to ${DOCSDIR}"
X	@${MKDIR} ${DOCSDIR}
X	@${INSTALL_MAN} ${WRKSRC}/LICENSE ${DOCSDIR}
X	@${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
X.endif
X
X.include <bsd.port.mk>
0bd49f5bc834720d0a3f56c85a2ed1a7
echo c - tabbed/files
mkdir -p tabbed/files > /dev/null 2>&1
echo x - tabbed/files/patch-config.mk
sed 's/^X//' >tabbed/files/patch-config.mk << 'd0b056b78f90112746969bb19000562e'
X--- config.mk.orig	2010-09-03 23:40:32.000000000 -0500
X+++ config.mk	2010-09-03 23:42:18.000000000 -0500
X@@ -4,12 +4,12 @@
X # Customize below to fit your system
X 
X # paths
X-PREFIX = /usr/local
X-MANPREFIX = ${PREFIX}/share/man
X+PREFIX?= /usr/local
X+MANPREFIX = ${PREFIX}/man
X 
X # includes and libs
X-INCS = -I. -I/usr/include
X-LIBS = -L/usr/lib -lc -lX11
X+INCS = -I. -I/usr/include -I/usr/local/include
X+LIBS = -L/usr/lib -L/usr/local/lib -lc -lX11
X 
X # flags
X CPPFLAGS = -DVERSION=\"${VERSION}\"
X@@ -21,4 +21,4 @@
X #LDFLAGS = ${LIBS}
X 
X # compiler and linker
X-CC = cc
X+CC?= cc
d0b056b78f90112746969bb19000562e
echo x - tabbed/pkg-descr
sed 's/^X//' >tabbed/pkg-descr << '3752bd8c5cd4c8d27ed14df22ee55e35'
Xtabbed is a simple Xembed container manager based on Xlib. tabbed
Xwas originally designed for surf but also usable with many other
Xapplication, i.e. uzbl, urxvt and xterm.
X
XIt consists of a single binary, configuration is done at compile-time
Xby a single config.h file.
X
XWWW: http://tools.suckless.org/tabbed
3752bd8c5cd4c8d27ed14df22ee55e35
echo x - tabbed/distinfo
sed 's/^X//' >tabbed/distinfo << '47f7aea96a0c4ad417a8cf47959cd6e9'
XMD5 (tabbed-0.3.tar.gz) = 4a30458f9adc38db549f735b8fb6451b
XSHA256 (tabbed-0.3.tar.gz) = bb72aa6e4831e0aadee8a6232d8532a548e736236bbaaed970e77fb5d3177ff0
XSIZE (tabbed-0.3.tar.gz) = 9177
47f7aea96a0c4ad417a8cf47959cd6e9
exit



>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci 
Responsible-Changed-By: pgollucci 
Responsible-Changed-When: Thu Sep 23 04:36:35 UTC 2010 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=150266 
Responsible-Changed-From-To: pgollucci->freebsd-ports-bugs 
Responsible-Changed-By: pgollucci 
Responsible-Changed-When: Fri Sep 24 06:24:04 UTC 2010 
Responsible-Changed-Why:  
going to have enotime for the next 2 weeks, sorry 

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

From: Stefan Thurner <thurners@nicsys.de>
To: bug-followup@FreeBSD.org, winstonw@lavabit.com
Cc:  
Subject: Re: ports/150266: New port: tabbed Simple generic tabbed fronted to
 xembed aware applications
Date: Sun, 2 Jan 2011 10:55:15 +0100

 --zYM0uCDKw75PZbzx
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 Looking for a commiter of this port. It's in the pipeline since
 September.
 
 regards
 -Stefan
 --=20
 GPG-encrypted mail welcome! --> ID:E970FCBE
 
 --zYM0uCDKw75PZbzx
 Content-Type: application/pgp-signature
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.16 (FreeBSD)
 
 iEYEABECAAYFAk0gS4IACgkQxNmQVulw/L5/dQCgwsFphs/NYRngYm/6jThu8ucd
 2dkAn35Q18KjgsWlDreWX+GcPaDAjW37
 =dMDb
 -----END PGP SIGNATURE-----
 
 --zYM0uCDKw75PZbzx--
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Sat Jan 29 14:24:07 UTC 2011 
State-Changed-Why:  
New port added. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/150266: commit references a PR
Date: Sat, 29 Jan 2011 14:24:19 +0000 (UTC)

 miwi        2011-01-29 14:24:14 UTC
 
   FreeBSD ports repository
 
   Modified files:
     x11                  Makefile 
   Added files:
     x11/tabbed           Makefile distinfo pkg-descr 
     x11/tabbed/files     patch-config.mk 
   Log:
   tabbed is a simple Xembed container manager based on Xlib. tabbed
   was originally designed for surf but also usable with many other
   application, i.e. uzbl, urxvt and xterm.
   
   It consists of a single binary, configuration is done at compile-time
   by a single config.h file.
   
   WWW: http://tools.suckless.org/tabbed
   
   PR:             ports/150266
   Submitted by:   Winston Weinert <winstonw at lavabit.com>
   Feature safe:   yes
   
   Revision  Changes    Path
   1.751     +1 -0      ports/x11/Makefile
   1.1       +40 -0     ports/x11/tabbed/Makefile (new)
   1.1       +2 -0      ports/x11/tabbed/distinfo (new)
   1.1       +25 -0     ports/x11/tabbed/files/patch-config.mk (new)
   1.1       +8 -0      ports/x11/tabbed/pkg-descr (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"
 
>Unformatted:
