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

(-)led/Makefile (-20 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	led
8
PORTNAME=	led
9
PORTVERSION=	0.9.2
9
PORTVERSION=	2.0
10
PORTREVISION=	1
11
CATEGORIES=	editors
10
CATEGORIES=	editors
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}-editor
12
MASTER_SITE_SUBDIR=	${PORTNAME}-editor
Lines 15-37 Link Here
15
MAINTAINER=	fracture@allusion.net
14
MAINTAINER=	fracture@allusion.net
16
15
17
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
18
19
MAN1=		led.1
20
MANCOMPRESSED=	yes
21
22
.if !defined(NOPORTDOCS)
23
PKGMESSAGE=	${WRKDIR}/pkg-message
24
.else
25
PKGMESSAGE=	/nonexistant
26
.endif
27
28
post-install:
29
.if !defined(NOPORTDOCS)
30
	${MKDIR} ${DOCSDIR}
31
	${INSTALL_DATA} ${WRKSRC}/sample.ledrc ${DOCSDIR}
32
	@${SED} 's|%%DOCSDIR%%|${DOCSDIR}|g' ${PKGDIR}/pkg-message > \
33
		${PKGMESSAGE}
34
	@${CAT} ${PKGMESSAGE}
35
.endif
36
17
37
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)led/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (led-0.9.2.tar.gz) = 1ff2d6b1318c1e958b7ccf49f0a5c1a5
1
MD5 (led-2.0.tar.gz) = 77692bb33d1041626425d37b9fccbf42
(-)led/files/patch-Makefile.in (-19 lines)
Lines 1-19 Link Here
1
2
$FreeBSD: ports/editors/led/files/patch-Makefile.in,v 1.1 2001/06/07 09:26:51 sobomax Exp $
3
4
--- Makefile.in	2001/06/07 09:15:55	1.1
5
+++ Makefile.in	2001/06/07 09:15:12
6
@@ -28,11 +28,11 @@
7
 
8
 install: all
9
 	@INSTALL@ -d @prefix@/bin
10
-	@INSTALL@ src/$(PROG) @prefix@/bin/
11
+	@INSTALL@ -s src/$(PROG) @prefix@/bin/
12
 
13
 	@INSTALL@ -d @prefix@/lib/$(PROG)
14
 	for i in build-modes/* ; do \
15
-		@INSTALL@ $$i @prefix@/lib/$(PROG)/ ; \
16
+		@INSTALL@ -s $$i @prefix@/lib/$(PROG)/ ; \
17
 	done
18
 
19
 	@INSTALL@ -d @prefix@/man/man1
(-)led/files/patch-src::file.c (-12 lines)
Lines 1-12 Link Here
1
2
$FreeBSD: ports/editors/led/files/patch-src::file.c,v 1.1 2002/04/29 23:25:30 sobomax Exp $
3
4
--- src/file.c.orig	Sun Jun 10 06:44:19 2001
5
+++ src/file.c	Tue Apr 30 02:15:40 2002
6
@@ -148,4 +148,6 @@
7
 
8
 		curr = curr->next;
9
 	}
10
+	fflush(fp);
11
+	fsync(fileno(fp));
12
 }
(-)led/pkg-message (-7 lines)
Lines 1-7 Link Here
1
**************************************************
2
3
An example configuration file is located in
4
%%DOCSDIR%%/sample.ledrc; to use it,
5
copy it to ~/.ledrc and edit it to your liking.
6
7
**************************************************
(-)led/pkg-plist (-7 / +17 lines)
Lines 1-9 Link Here
1
bin/led
1
bin/led
2
lib/led/c.so
2
lib/led/modules/perlapi.so
3
lib/led/html.so
3
share/led/syntax/conf
4
lib/led/mbox.so
4
share/led/syntax/c
5
lib/led/python.so
5
share/led/syntax/h
6
lib/led/sh.so
6
share/led/syntax/cc
7
share/led/syntax/ledrc
8
share/led/syntax/cs
9
share/led/syntax/mail
10
share/led/syntax/perl
11
share/led/syntax/python
12
share/led/syntax/sh
13
share/led/syntax/syntax
14
share/led/syntax/tex
15
share/led/color
16
@dirrm share/led/syntax
17
@dirrm share/led
18
@dirrm lib/led/modules
7
@dirrm lib/led
19
@dirrm lib/led
8
%%PORTDOCS%%share/doc/led/sample.ledrc
9
%%PORTDOCS%%@dirrm share/doc/led

Return to bug 40581