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

Collapse All | Expand All

(-)lang/librep/Makefile (-10 / +8 lines)
Lines 1-23 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
Lines 25-30 Link Here
25
USE_XZ=		yes
22
USE_XZ=		yes
26
USE_GNOME=	gnomehack
23
USE_GNOME=	gnomehack
27
USE_GETTEXT=	yes
24
USE_GETTEXT=	yes
25
USE_PKGCONFIG=	build
28
USE_GMAKE=	yes
26
USE_GMAKE=	yes
29
USE_AUTOTOOLS=	libtool
27
USE_AUTOTOOLS=	libtool
30
CONFIGURE_ARGS=	--with-aclocaldir=${PREFIX}/share/aclocal \
28
CONFIGURE_ARGS=	--with-aclocaldir=${PREFIX}/share/aclocal \
(-)lang/librep/Makefile.0921 (+52 lines)
Line 0 Link Here
1
# Created by: Yukihiro Nakai <nakai@FreeBSD.org>
2
# $FreeBSD: head/lang/librep/Makefile 311141 2013-01-29 00:35:32Z jkim $
3
4
PORTNAME=	librep
5
PORTVERSION=	0.92.2.1
6
CATEGORIES=	lang elisp gnome
7
MASTER_SITES=	http://download.tuxfamily.org/librep/%SUBDIR%/
8
MASTER_SITE_SUBDIR=	. Archive
9
10
MAINTAINER=	ports@FreeBSD.org
11
COMMENT=	An Emacs Lisp like runtime library
12
13
LICENSE=	GPLv2
14
15
LIB_DEPENDS=	gdbm:${PORTSDIR}/databases/gdbm \
16
		ffi:${PORTSDIR}/devel/libffi \
17
    		gmp:${PORTSDIR}/math/gmp
18
RUN_DEPENDS=	gtar:${PORTSDIR}/archivers/gtar
19
20
USE_CSTD=	gnu89
21
22
USE_XZ=		yes
23
USE_GNOME=	gnomehack
24
USE_GETTEXT=	yes
25
USE_PKGCONFIG=	build
26
USE_GMAKE=	yes
27
USE_AUTOTOOLS=	libtool
28
CONFIGURE_ARGS=	--with-aclocaldir=${PREFIX}/share/aclocal \
29
		--with-stack-direction=-1
30
USE_LDCONFIG=	yes
31
MAKE_JOBS_SAFE=	yes
32
33
CPPFLAGS=	-I${LOCALBASE}/include ${PTHREAD_CFLAGS}
34
LDFLAGS=	-L${LOCALBASE}/lib ${PTHREAD_LIBS}
35
36
MANCOMPRESSED=	yes
37
MAN1=		rep.1 rep-remote.1 rep-xgettext.1 repdoc.1
38
INFO=		librep
39
40
.include <bsd.port.pre.mk>
41
42
.if ${ARCH} == ia64
43
BROKEN=		Does not build on ia64
44
.endif
45
46
post-patch:
47
	@${REINPLACE_CMD} -e \
48
		'/GDBM_LIBS/s|"-lgdbm"|"$$LIBS -lgdbm"|g' ${WRKSRC}/configure
49
	@${REINPLACE_CMD} -e \
50
		's|/share/man/|/man/|g' ${WRKSRC}/man/Makefile.in
51
52
.include <bsd.port.post.mk>
(-)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/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