mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
print/xmbibtex: fix build on current
PR: ports/184226 Submitted by: KATO Tsuguru <tkato432 yahoo.com>
This commit is contained in:
parent
ab04541320
commit
a056c1e1e4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=334968
@ -5,8 +5,7 @@ PORTNAME= xmbibtex
|
||||
PORTVERSION= 1.7
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= print databases
|
||||
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
||||
MASTER_SITE_SUBDIR= apps/tex
|
||||
MASTER_SITES= SUNSITE/apps/tex
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Reference manager based on the BibTeX file format
|
||||
@ -19,9 +18,4 @@ NO_INSTALL_MANPAGES= yes
|
||||
|
||||
PLIST_FILES= bin/xmbibtex lib/X11/app-defaults/XmBibTeX
|
||||
|
||||
NO_STAGE= yes
|
||||
post-configure:
|
||||
@${REINPLACE_CMD} -e 's,(CCLINK,(CXXLINK, ; s,/usr/local,${PREFIX},' \
|
||||
${WRKSRC}/Makefile
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,11 +1,11 @@
|
||||
--- Imakefile.orig Sun Oct 19 02:50:16 1997
|
||||
+++ Imakefile Sun Nov 12 20:17:11 2000
|
||||
@@ -1,11 +1,11 @@
|
||||
-SYS_LIBRARIES = -lXm -lXt -lSM -lICE -lX11 -lXpm -lXext -lXmu
|
||||
@@ -1,11 +1,12 @@
|
||||
SYS_LIBRARIES = -lXm -lXt -lSM -lICE -lX11 -lXpm -lXext -lXmu
|
||||
-CC = g++
|
||||
-INCLUDES = -I/usr/include/g++
|
||||
+SYS_LIBRARIES = ${MOTIFLIB} -lXt -lSM -lICE -lX11 -lXpm -lXext -lXmu
|
||||
+CC = $(CXX)
|
||||
+CCLINK = $(CXXLINK)
|
||||
+XCOMM INCLUDES = -I/usr/include/g++
|
||||
|
||||
-BINDIR = /usr/local/bin
|
||||
|
45
print/xmbibtex/files/patch-print_cb.cc
Normal file
45
print/xmbibtex/files/patch-print_cb.cc
Normal file
@ -0,0 +1,45 @@
|
||||
--- print_cb.cc.orig
|
||||
+++ print_cb.cc
|
||||
@@ -2,9 +2,9 @@
|
||||
/* Print LaTeX Module */
|
||||
/* Last change 18.08.1996 */
|
||||
|
||||
-#include <iostream.h>
|
||||
-#include <fstream.h>
|
||||
-#include <string.h>
|
||||
+#include <iostream>
|
||||
+#include <fstream>
|
||||
+#include <cstring>
|
||||
#include <X11/cursorfont.h>
|
||||
#include "globals.h"
|
||||
|
||||
@@ -13,18 +13,18 @@
|
||||
char *filename;
|
||||
char *db, *pdb;
|
||||
unsigned long n;
|
||||
- ofstream out;
|
||||
+ std::ofstream out;
|
||||
Cursor uhr, pfeil;
|
||||
|
||||
XmFileSelectionBoxCallbackStruct *cbs=
|
||||
(XmFileSelectionBoxCallbackStruct *) call_data;
|
||||
|
||||
if (!XmStringGetLtoR(cbs->value, XmFONTLIST_DEFAULT_TAG, &filename)) {
|
||||
- cout << "Internal error pasting filename! \n";
|
||||
+ std::cout << "Internal error pasting filename! \n";
|
||||
return;
|
||||
}
|
||||
if (!*filename) {
|
||||
- cout << "No file selected! \n";
|
||||
+ std::cout << "No file selected! \n";
|
||||
XtFree(filename);
|
||||
return;
|
||||
}
|
||||
@@ -37,7 +37,7 @@
|
||||
|
||||
out.open(filename);
|
||||
if(!out) {
|
||||
- cout << "Cannot open LaTeX file for output! \n";
|
||||
+ std::cout << "Cannot open LaTeX file for output! \n";
|
||||
return;
|
||||
}
|
Loading…
Reference in New Issue
Block a user