View | Details | Raw Unified | Return to bug 170173 | Differences between
and this patch

Collapse All | Expand All

(-)lang/librep/Makefile (-12 / +11 lines)
Lines 1-30 Link Here
1
# New ports collection makefile for:   librep
1
# Created by: Yukihiro Nakai <nakai@FreeBSD.org>
2
# Date created:        13 September 1999
3
# Whom:                Yukihiro Nakai <nakai@FreeBSD.org>
4
#
5
# $FreeBSD: head/lang/librep/Makefile 311141 2013-01-29 00:35:32Z jkim $
2
# $FreeBSD: head/lang/librep/Makefile 311141 2013-01-29 00:35:32Z jkim $
6
#    $MCom: ports/lang/librep/Makefile,v 1.2 2006/09/10 00:51:12 mezz Exp $
7
3
8
PORTNAME=	librep
4
PORTNAME=	librep
9
PORTVERSION=	0.92.1b
5
PORTVERSION=	0.92.3
10
CATEGORIES=	lang elisp gnome
6
CATEGORIES=	lang elisp gnome
11
MASTER_SITES=	http://download.tuxfamily.org/librep/
7
MASTER_SITES=	http://download.tuxfamily.org/librep/%SUBDIR%/
8
MASTER_SITE_SUBDIR=	. Archive
12
9
13
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	ports@FreeBSD.org
14
COMMENT=	An Emacs Lisp like runtime library
11
COMMENT=	Emacs Lisp like runtime library
15
12
16
LICENSE=	GPLv2
13
LICENSE=	GPLv2
17
14
18
LIB_DEPENDS=	gdbm.4:${PORTSDIR}/databases/gdbm \
15
LIB_DEPENDS=	gdbm:${PORTSDIR}/databases/gdbm \
19
		ffi:${PORTSDIR}/devel/libffi \
16
		ffi:${PORTSDIR}/devel/libffi \
20
    		gmp.10:${PORTSDIR}/math/gmp
17
    		gmp:${PORTSDIR}/math/gmp
21
RUN_DEPENDS=	gtar:${PORTSDIR}/archivers/gtar
18
RUN_DEPENDS=	gtar:${PORTSDIR}/archivers/gtar
22
19
23
USE_CSTD=	gnu89
20
USE_CSTD=	gnu89
24
21
25
USE_XZ=		yes
22
USE_XZ=		yes
26
USE_GNOME=	gnomehack
23
USE_GNOME=	gnomehack
24
USE_READLINE=	yes
27
USE_GETTEXT=	yes
25
USE_GETTEXT=	yes
26
USE_PKGCONFIG=	build
28
USE_GMAKE=	yes
27
USE_GMAKE=	yes
29
USE_AUTOTOOLS=	libtool
28
USE_AUTOTOOLS=	libtool
30
CONFIGURE_ARGS=	--with-aclocaldir=${PREFIX}/share/aclocal \
29
CONFIGURE_ARGS=	--with-aclocaldir=${PREFIX}/share/aclocal \
Lines 32-39 Link Here
32
USE_LDCONFIG=	yes
31
USE_LDCONFIG=	yes
33
MAKE_JOBS_SAFE=	yes
32
MAKE_JOBS_SAFE=	yes
34
33
35
CPPFLAGS=	-I${LOCALBASE}/include ${PTHREAD_CFLAGS}
34
CPPFLAGS=	-I${LOCALBASE}/include
36
LDFLAGS=	-L${LOCALBASE}/lib ${PTHREAD_LIBS}
35
LDFLAGS=	-L${LOCALBASE}/lib -pthread
37
36
38
MANCOMPRESSED=	yes
37
MANCOMPRESSED=	yes
39
MAN1=		rep.1 rep-remote.1 rep-xgettext.1 repdoc.1
38
MAN1=		rep.1 rep-remote.1 rep-xgettext.1 repdoc.1
(-)lang/librep/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (librep-0.92.1b.tar.xz) = aedca2716252a1ff2256aca321cce35646b795840b65a3c481708c04a6fd7e3e
1
SHA256 (librep-0.92.3.tar.xz) = 45c98a5bbdfde4f1d98e3839b319d9ae15857d2d1ae8e3838d9a18d53f3e8b85
2
SIZE (librep-0.92.1b.tar.xz) = 598352
2
SIZE (librep-0.92.3.tar.xz) = 607128
(-)lang/librep/files/patch-src__lispmach.h (+11 lines)
Line 0 Link Here
1
--- src/lispmach.h.orig
2
+++ src/lispmach.h
3
@@ -475,7 +475,7 @@
4
 #ifdef __arm__
5
 #define PC_REG asm("r9")
6
 #define SP_REG asm("r8")
7
-#define SLOTS_REG asm("r7")
8
+#define SLOTS_REG asm("r10")
9
 #endif
10
 #endif
11
 
(-)lang/librep/pkg-descr (-1 / +7 lines)
Lines 1-3 Link Here
1
An Emacs Lisp like runtime library
1
Librep is a Lisp system for UNIX, needed by Sawfish window manager.
2
It contains a Lisp interpreter, byte-code compiler and virtual
3
machine. Applications may use the Lisp interpreter as an extension
4
language, or it may be used for stand-alone scripts.
5
6
The Lisp dialect was originally inspired by Emacs Lisp, but with the
7
worst features removed. It also borrows many ideas from Scheme.
2
8
3
WWW: http://sawfish.tuxfamily.org/
9
WWW: http://sawfish.tuxfamily.org/

Return to bug 170173