View | Details | Raw Unified | Return to bug 100558
Collapse All | Expand All

(-)devel/cweb/Makefile (-1 / +6 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	cweb
8
PORTNAME=	cweb
9
PORTVERSION=	3.64
9
PORTVERSION=	3.64aa
10
CATEGORIES=	devel
10
CATEGORIES=	devel
11
MASTER_SITES=	${MASTER_SITE_TEX_CTAN}
11
MASTER_SITES=	${MASTER_SITE_TEX_CTAN}
12
MASTER_SITE_SUBDIR=	web/c_cpp/cweb
12
MASTER_SITE_SUBDIR=	web/c_cpp/cweb
Lines 15-20 Link Here
15
COMMENT=	Literate programming tools for the C language
15
COMMENT=	Literate programming tools for the C language
16
16
17
NO_WRKSUBDIR=	yes
17
NO_WRKSUBDIR=	yes
18
19
MAKE_ARGS=	CWEBINPUTS="${DATADIR}" \
20
		CFLAGS="${CFLAGS}" \
21
		LINKFLAGS="" \
22
		CC="${CC}"
18
23
19
MAN1=		cweb.1
24
MAN1=		cweb.1
20
25
(-)devel/cweb/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (cweb-3.64.tar.gz) = 49e2abe401ebf1ab008193063b88af2b
1
MD5 (cweb-3.64aa.tar.gz) = 6391ce4aa8b4083fe24ba1d66a9a673f
2
SHA256 (cweb-3.64.tar.gz) = b68fa4cc8a3ada0b4be130c62306a66ff8e74a132afb354a2a0d1581796bcfce
2
SHA256 (cweb-3.64aa.tar.gz) = 0cde41fd86643aefa80cd1704acfafcb2b485e71fa8dc6277bfd87971004900c
3
SIZE (cweb-3.64.tar.gz) = 212010
3
SIZE (cweb-3.64aa.tar.gz) = 223945
(-)devel/cweb/files/patch-aa (-50 lines)
Lines 1-50 Link Here
1
--- Makefile.orig	Sat Jul 13 07:33:16 2002
2
+++ Makefile	Tue Dec 14 23:47:23 2004
3
@@ -18,23 +18,23 @@
4
 #
5
 
6
 # directory for TeX inputs (cwebmac.tex goes here)
7
-MACROSDIR= /usr/local/texmf/tex/generic
8
+MACROSDIR= ${PREFIX}/share/texmf/tex/generic/misc
9
 
10
 # directory for CWEB inputs in @i files
11
-CWEBINPUTS= /usr/local/lib/cweb
12
+CWEBINPUTS= ${PREFIX}/share/cweb
13
 
14
 # extension for manual pages ("l" distinguishes local from system stuff)
15
-MANEXT= l
16
-#MANEXT= 1
17
+#MANEXT= l
18
+MANEXT= 1
19
 
20
 # directory for manual pages (cweb.1 goes here)
21
-MANDIR= /usr/man/man$(MANEXT)
22
+MANDIR= ${PREFIX}/man/man$(MANEXT)
23
 
24
 # destination directory for executables; must end in /
25
-DESTDIR= /usr/local/bin/
26
+DESTDIR= ${PREFIX}/bin/
27
 
28
 # directory for GNU EMACS Lisp code (cweb.el goes here)
29
-EMACSDIR= /usr/local/emacs/lisp
30
+EMACSDIR= ${PREFIX}/share/emacs/site-lisp
31
 
32
 # Set DESTPREF to null if you want to call the executables "tangle" and "weave"
33
 # (probably NOT a good idea; we recommend leaving DESTPREF=c)
34
@@ -50,13 +50,13 @@
35
 WCHANGES=
36
 
37
 # We keep debugging info around, for fun, but most users don't need it
38
-CFLAGS = -g
39
+#CFLAGS = -g
40
 #CFLAGS = -O
41
-LINKFLAGS = -g
42
+#LINKFLAGS = -g
43
 #LINKFLAGS = -s # for smaller (stripped) executables on many UNIX systems
44
 
45
 # What C compiler are you using?
46
-CC = cc
47
+#CC = cc
48
 
49
 # RM and CP are used below in case rm and cp are aliased
50
 RM= /bin/rm

Return to bug 100558