ports/185903: port update: x11/tabbed
Mikhail
mp39590 at gmail.com
Wed Jan 22 08:20:03 UTC 2014
The following reply was made to PR ports/185903; it has been noted by GNATS.
From: Mikhail <mp39590 at gmail.com>
To: FreeBSD-gnats-submit at FreeBSD.org, freebsd-ports-bugs at FreeBSD.org
Cc:
Subject: Re: ports/185903: port update: x11/tabbed
Date: Wed, 22 Jan 2014 12:11:12 +0400
--EeQfGwPcQSOJBaQU
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
On 10:40 20-Jan 2014 FreeBSD-gnats-submit at FreeBSD.org wrote:
> Thank you very much for your problem report.
> It has the internal identification `ports/185903'.
> The individual assigned to look at your
> report is: freebsd-ports-bugs.
>
> You can access the state of your problem report at any time
> via this link:
>
> http://www.freebsd.org/cgi/query-pr.cgi?pr=185903
>
> >Category: ports
> >Responsible: freebsd-ports-bugs
> >Synopsis: port update: x11/tabbed
> >Arrival-Date: Mon Jan 20 06:40:00 UTC 2014
New version (0.6) of tabbed has been released yesterday. Patch is attached.
--EeQfGwPcQSOJBaQU
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment; filename="tabbed-0.6.patch"
diff -crN tabbed.orig/Makefile tabbed/Makefile
*** tabbed.orig/Makefile 2014-01-22 11:29:35.000000000 +0400
--- tabbed/Makefile 2014-01-22 11:21:50.000000000 +0400
***************
*** 2,8 ****
# $FreeBSD: x11/tabbed/Makefile 340611 2014-01-21 15:11:17Z linimon $
PORTNAME= tabbed
! PORTVERSION= 0.3
CATEGORIES= x11
MASTER_SITES= http://dl.suckless.org/tools/
--- 2,8 ----
# $FreeBSD: x11/tabbed/Makefile 340611 2014-01-21 15:11:17Z linimon $
PORTNAME= tabbed
! PORTVERSION= 0.6
CATEGORIES= x11
MASTER_SITES= http://dl.suckless.org/tools/
***************
*** 13,23 ****
USE_XORG= x11
! MAN1= tabbed.1
! PLIST_FILES= bin/tabbed
PORTDOCS= LICENSE README
! NO_STAGE= yes
pre-everything::
@${ECHO_MSG} "You can build tabbed with your own config.h using the TABBED_CONF knob:"
@${ECHO_MSG} "make TABBED_CONF=/path/to/tabbed/config.h install clean"
--- 13,26 ----
USE_XORG= x11
! OPTIONS_DEFINE= DOCS
!
! PLIST_FILES= bin/tabbed \
! man/man1/tabbed.1.gz
PORTDOCS= LICENSE README
! .include <bsd.port.options.mk>
!
pre-everything::
@${ECHO_MSG} "You can build tabbed with your own config.h using the TABBED_CONF knob:"
@${ECHO_MSG} "make TABBED_CONF=/path/to/tabbed/config.h install clean"
***************
*** 29,39 ****
.endif
post-install:
! .if !defined(NOPORTDOCS)
! @${ECHO_MSG} "installing additional documentation to ${DOCSDIR}"
! @${MKDIR} ${DOCSDIR}
! @${INSTALL_MAN} ${WRKSRC}/LICENSE ${DOCSDIR}
! @${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>
--- 32,42 ----
.endif
post-install:
! .if ${PORT_OPTIONS:MDOCS}
! @${ECHO_MSG} "installing additional documentation to ${STAGEDIR}${DOCSDIR}"
! @${MKDIR} ${STAGEDIR}${DOCSDIR}
! @${INSTALL_MAN} ${WRKSRC}/LICENSE ${STAGEDIR}${DOCSDIR}
! @${INSTALL_MAN} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
.endif
.include <bsd.port.mk>
diff -crN tabbed.orig/distinfo tabbed/distinfo
*** tabbed.orig/distinfo 2014-01-19 21:48:01.000000000 +0400
--- tabbed/distinfo 2014-01-22 11:22:53.000000000 +0400
***************
*** 1,2 ****
! SHA256 (tabbed-0.3.tar.gz) = bb72aa6e4831e0aadee8a6232d8532a548e736236bbaaed970e77fb5d3177ff0
! SIZE (tabbed-0.3.tar.gz) = 9177
--- 1,2 ----
! SHA256 (tabbed-0.6.tar.gz) = 7651ea3acbec5d6a25469e8665da7fc70aba2b4fa61a2a6a5449eafdfd641c42
! SIZE (tabbed-0.6.tar.gz) = 12926
diff -crN tabbed.orig/files/patch-config.mk tabbed/files/patch-config.mk
*** tabbed.orig/files/patch-config.mk 2014-01-19 21:48:01.000000000 +0400
--- tabbed/files/patch-config.mk 2014-01-22 11:21:50.000000000 +0400
***************
*** 1,25 ****
! --- config.mk.orig 2010-09-03 23:40:32.000000000 -0500
! +++ config.mk 2010-09-03 23:42:18.000000000 -0500
! @@ -4,12 +4,12 @@
! # Customize below to fit your system
!
! # paths
! -PREFIX = /usr/local
! -MANPREFIX = ${PREFIX}/share/man
! +PREFIX?= /usr/local
! +MANPREFIX = ${PREFIX}/man
!
! # includes and libs
! -INCS = -I. -I/usr/include
! -LIBS = -L/usr/lib -lc -lX11
! +INCS = -I. -I/usr/include -I/usr/local/include
! +LIBS = -L/usr/lib -L/usr/local/lib -lc -lX11
!
! # flags
! CPPFLAGS = -DVERSION=\"${VERSION}\"
! @@ -21,4 +21,4 @@
! #LDFLAGS = ${LIBS}
!
! # compiler and linker
! -CC = cc
! +CC?= cc
--- 1,40 ----
! *** config.mk.orig 2014-01-19 21:53:24.000000000 +0400
! --- config.mk 2014-01-19 22:40:13.000000000 +0400
! ***************
! *** 5,15 ****
!
! # paths
! PREFIX = /usr/local
! ! MANPREFIX = ${PREFIX}/share/man
!
! # includes and libs
! ! INCS = -I. -I/usr/include
! ! LIBS = -L/usr/lib -lc -lX11
!
! # flags
! CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
! --- 5,15 ----
!
! # paths
! PREFIX = /usr/local
! ! MANPREFIX = ${PREFIX}/man
!
! # includes and libs
! ! INCS = -I. -I/usr/local/include
! ! LIBS = -L/usr/local/lib -lc -lX11
!
! # flags
! CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
! ***************
! *** 21,25 ****
! #LDFLAGS = ${LIBS}
!
! # compiler and linker
! ! CC = cc
!
! --- 21,25 ----
! #LDFLAGS = ${LIBS}
!
! # compiler and linker
! ! CC?= cc
!
--EeQfGwPcQSOJBaQU--
More information about the freebsd-ports-bugs
mailing list