1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

update print/lgrind: change location of patches (Homepage will expire)

PR:		55832
Submitted by:	Kay Lehmann <kay_lehmann@web.de> (maintainer)
This commit is contained in:
Daichi GOTO 2003-08-22 04:49:50 +00:00
parent 4c937e0418
commit f594cd6879
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=87476
6 changed files with 50 additions and 8 deletions

View File

@ -37,10 +37,6 @@ DISTFILES= ${PORTNAME}/source/Makefile \
DIST_SUBDIR= ${PORTNAME} DIST_SUBDIR= ${PORTNAME}
EXTRACT_ONLY= ${PORTNAME}.tar.gz EXTRACT_ONLY= ${PORTNAME}.tar.gz
PATCH_SITES= http://home.arcor.de/kay_lehmann/freebsd/ports/lgrind/
PATCHFILES= patch-Makefile.gz patch-source_Makefile.gz \
patch-source_lgrind.c.gz patch-source_regexp.c.gz
MAINTAINER= kay_lehmann@web.de MAINTAINER= kay_lehmann@web.de
COMMENT= Produce beautiful listings of source code with LaTeX COMMENT= Produce beautiful listings of source code with LaTeX

View File

@ -19,8 +19,4 @@ MD5 (lgrind/lgrind/source/regexp.c) = 08bfdb914d889830e5c2bdca2ba89291
MD5 (lgrind/lgrind/source/regexp.h) = e02f12d75ae0f1d4388e89072139bd93 MD5 (lgrind/lgrind/source/regexp.h) = e02f12d75ae0f1d4388e89072139bd93
MD5 (lgrind/lgrind/source/retest.c) = 478fccd23c3e34815faf17b369e53d98 MD5 (lgrind/lgrind/source/retest.c) = 478fccd23c3e34815faf17b369e53d98
MD5 (lgrind/lgrind/source/v2lg.c) = f642e88c0a0ab2e4183e46dd5f575605 MD5 (lgrind/lgrind/source/v2lg.c) = f642e88c0a0ab2e4183e46dd5f575605
MD5 (lgrind/patch-Makefile.gz) = 49212838d1d91c42d7d981537ceffafb
MD5 (lgrind/patch-source_Makefile.gz) = 750ac77c961e287b8984cddfd052d6f5
MD5 (lgrind/patch-source_lgrind.c.gz) = 5c5d69cb400d4edb7d8f6e1c666ccfac
MD5 (lgrind/patch-source_regexp.c.gz) = 2eb6d0d78352b1a474742e60a1239ccd
MD5 (lgrind/lgrind.tar.gz) = IGNORE MD5 (lgrind/lgrind.tar.gz) = IGNORE

View File

@ -0,0 +1,16 @@
--- Makefile.orig Sat Apr 20 14:54:37 2002
+++ Makefile Sat Apr 20 14:55:38 2002
@@ -2,11 +2,11 @@
# $Id: Makefile,v 1.10 2000/12/27 21:42:37 mike Exp $
-BASEDIR=/usr
+BASEDIR=/usr/local
#DEFSFILE=${HOME}/Work/lgrind/lgrindef
DEFSFILE=$(BASEDIR)/share/texmf/tex/latex/lgrind/lgrindef
TEXFILEDIR=$(BASEDIR)/share/texmf/tex/latex/lgrind
-DOCDIR=$(BASEDIR)/doc/lgrind
+DOCDIR=$(BASEDIR)/share/texmf/doc/latex/lgrind
INSTALL=install
SOURCES=lgrind.c lgutil.c regexp.c regexp.h lgrindef.c lgrindef.h retest.c v2lg.c

View File

@ -0,0 +1,12 @@
--- source/Makefile.orig Sat Apr 20 15:18:16 2002
+++ source/Makefile Sat Apr 20 15:21:27 2002
@@ -33,7 +33,9 @@
install: all
$(INSTALL) -s lgrind $(BINDIR)/lgrind
$(INSTALL) -m 644 $(MANPAGES1) $(MANDIR)/man1
+ gzip $(MANDIR)/man1/$(MANPAGES1)
$(INSTALL) -m 644 $(MANPAGES5) $(MANDIR)/man5
+ gzip $(MANDIR)/man5/$(MANPAGES5)
clean:
rm -f $(OBJS) lgrind retest v2lg

View File

@ -0,0 +1,11 @@
--- source/lgrind.c.orig Fri Mar 28 10:08:41 2003
+++ source/lgrind.c Fri Mar 28 10:09:12 2003
@@ -94,7 +94,7 @@
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
-#include <malloc.h>
+/*#include <malloc.h> */
#include <time.h>
/* One of the following two (depending on your system) */
#include <unistd.h>

View File

@ -0,0 +1,11 @@
--- source/regexp.c.orig Fri Mar 28 10:09:46 2003
+++ source/regexp.c Fri Mar 28 10:10:13 2003
@@ -56,7 +56,7 @@
#include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include "regexp.h"