FreeBSD Bugzilla – Attachment 132898 Details for
Bug 177259
x11/roxterm: Update to version 2.6.5
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 4.14 KB, created by
tkato432
on 2013-03-22 18:40:05 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
tkato432
Created:
2013-03-22 18:40:05 UTC
Size:
4.14 KB
patch
obsolete
>diff -urN /usr/ports/x11/roxterm/Makefile x11/roxterm/Makefile >--- /usr/ports/x11/roxterm/Makefile 2012-11-08 10:10:25.000000000 +0900 >+++ x11/roxterm/Makefile 2013-03-05 19:04:48.000000000 +0900 >@@ -1,13 +1,8 @@ >-# New ports collection makefile for: roxterm >-# Date created: 19 Jun 2007 >-# Whom: Yinghong Liu <relaxbsd@gmail.com> >-# >+# Created by: Yinghong Liu <relaxbsd@gmail.com> > # $FreeBSD: head/x11/roxterm/Makefile 301622 2012-07-27 16:20:41Z bapt $ >-# > > PORTNAME= roxterm >-PORTVERSION= 2.2.2 >-PORTREVISION= 1 >+PORTVERSION= 2.6.5 > CATEGORIES= x11 > MASTER_SITES= SF > >@@ -16,45 +11,65 @@ > > LICENSE= GPLv3 > >-BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl \ >+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lockfile>0:${PORTSDIR}/devel/py-lockfile \ >+ docbook-xsl>0:${PORTSDIR}/textproc/docbook-xsl \ > xsltproc:${PORTSDIR}/textproc/libxslt > LIB_DEPENDS= dbus-glib-1:${PORTSDIR}/devel/dbus-glib > >-USE_XORG= sm ice >+OPTIONS_DEFINE= DOCS >+ >+USE_BZIP2= yes > USE_GNOME= libglade2 vte >+USE_PYTHON_BUILD= yes > USE_GETTEXT= yes >-USE_GMAKE= yes >-USE_PKGCONFIG= yes >-GNU_CONFIGURE= yes >-CONFIGURE_ENV= ac_cv_prog_HAVE_XMLTO=no ac_cv_prog_HAVE_PO4A=no >+USE_PKGCONFIG= build >+USE_AUTOTOOLS= libtool:env > INSTALLS_ICONS= yes > MAKE_JOBS_SAFE= yes > > MAN1= roxterm.1 \ > roxterm-config.1 > >+MAITCHFLAGS= CC=${CC};CPP=${CC};CFLAGS=${CFLAGS};PARALLEL=${_make_jobs} >+ >+.include <bsd.port.options.mk> >+ >+.if !defined(DISABLE_MAKE_JOBS) >+_make_jobs= ${MAKE_JOBS_NUMBER} >+.endif >+ > post-patch: >-.for file in Makefile.in po4a/Makefile.in >- @${REINPLACE_CMD} -e '/^install-data-am:/s|install-data-local||g' \ >- ${WRKSRC}/${file} >-.endfor >-.for file in src/Makefile.in >- @${REINPLACE_CMD} -e '/roxterm-config.ui/s|-i |-i.orig |g' \ >- ${WRKSRC}/${file} >-.endfor >+ @${REINPLACE_CMD} -e \ >+ 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/maitch.py > >-post-install: >+do-configure: >+ @(cd ${WRKSRC} && ${SETENV} MAITCHFLAGS="${MAITCHFLAGS}" \ >+ ${PYTHON_CMD} mscript.py configure --prefix=${PREFIX} \ >+ --disable-gtk3 --disable-po4a --disable-git) >+ >+do-build: >+ @(cd ${WRKSRC} && ${PYTHON_CMD} mscript.py build \ >+ && ${PYTHON_CMD} mscript.py install) >+ >+do-install: >+ (cd ${WRKSRC}/build/usr/local/bin \ >+ && ${INSTALL_PROGRAM} * ${PREFIX}/bin) >+ (cd ${WRKSRC}/build/usr/local/share/man/man1 \ >+ && ${INSTALL_MAN} * ${MANPREFIX}/man/man1) >+ @${MKDIR} ${DATADIR} >+ @(cd ${WRKSRC}/build/usr/local/share/roxterm \ >+ && ${COPYTREE_SHARE} . ${DATADIR}) >+ @${MKDIR} ${DESKTOPDIR} >+ (cd ${WRKSRC}/build/usr/local/share/applications \ >+ && ${INSTALL_DATA} * ${DESKTOPDIR}) > @${MKDIR} ${PREFIX}/share/icons/hicolor/scalable/apps >- ${INSTALL_DATA} ${WRKSRC}/roxterm.svg \ >- ${PREFIX}/share/icons/hicolor/scalable/apps >-.if !defined(NOPORTDOCS) >+ (cd ${WRKSRC}/build/usr/local/share/icons/hicolor/scalable/apps \ >+ && ${INSTALL_DATA} * \ >+ ${PREFIX}/share/icons/hicolor/scalable/apps) >+.if ${PORT_OPTIONS:MDOCS} > @${MKDIR} ${DOCSDIR} >-.for file in AUTHORS Changes README >- ${INSTALL_DATA} ${WRKSRC}/Help/${file} ${DOCSDIR} >-.endfor >-.for dir in en lib >- @(cd ${WRKSRC}/Help && ${COPYTREE_SHARE} ${dir} ${DOCSDIR}) >-.endfor >+ @(cd ${WRKSRC}/build/usr/local/share/doc/roxterm \ >+ && ${COPYTREE_SHARE} . ${DOCSDIR}) > .endif > > .include <bsd.port.mk> >diff -urN /usr/ports/x11/roxterm/distinfo x11/roxterm/distinfo >--- /usr/ports/x11/roxterm/distinfo 2012-11-08 10:10:25.000000000 +0900 >+++ x11/roxterm/distinfo 2013-03-02 06:40:13.000000000 +0900 >@@ -1,2 +1,2 @@ >-SHA256 (roxterm-2.2.2.tar.gz) = 3c01daa2ee3c0e652653804ca6466a9d18cabe481660b759148e7d7ffadb4a94 >-SIZE (roxterm-2.2.2.tar.gz) = 931976 >+SHA256 (roxterm-2.6.5.tar.bz2) = e8b2dd5ce320b763b66590ebef77c422ab90181bb1a84d30fea8c47da0d46cab >+SIZE (roxterm-2.6.5.tar.bz2) = 300892 >diff -urN /usr/ports/x11/roxterm/pkg-plist x11/roxterm/pkg-plist >--- /usr/ports/x11/roxterm/pkg-plist 2012-11-08 10:10:25.000000000 +0900 >+++ x11/roxterm/pkg-plist 2013-03-05 16:30:25.000000000 +0900 >@@ -2,7 +2,7 @@ > bin/roxterm-config > share/applications/roxterm.desktop > %%PORTDOCS%%%%DOCSDIR%%/AUTHORS >-%%PORTDOCS%%%%DOCSDIR%%/Changes >+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog > %%PORTDOCS%%%%DOCSDIR%%/README > %%PORTDOCS%%%%DOCSDIR%%/en/guide.html > %%PORTDOCS%%%%DOCSDIR%%/en/index.html
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 177259
: 132898