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

Collapse All | Expand All

(-)textproc/libunibreak/Makefile (-6 / +10 lines)
Lines 2-22 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	libunibreak
4
PORTNAME=	libunibreak
5
PORTVERSION=	1.1
5
PORTVERSION=	4.0
6
PORTREVISION=	3
7
PORTEPOCH=	1
8
CATEGORIES=	textproc
6
CATEGORIES=	textproc
9
MASTER_SITES=	SF/vimgadgets/${PORTNAME}/${PORTVERSION}
10
7
11
MAINTAINER=	ports@FreeBSD.org
8
MAINTAINER=	ndowens@yahoo.com
12
COMMENT=	Implementation of the line and word breaking algorithm for Unicode
9
COMMENT=	Implementation of the line and word breaking algorithm for Unicode
13
10
14
LICENSE=	ZLIB
11
LICENSE=	ZLIB
15
LICENSE_FILE=	${WRKSRC}/LICENCE
12
LICENSE_FILE=	${WRKSRC}/LICENCE
16
13
17
USES=		libtool pathfix
14
USES=		autoreconf libtool pathfix
18
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
19
INSTALL_TARGET=	install-strip
16
INSTALL_TARGET=	install-strip
20
USE_LDCONFIG=	yes
17
USE_LDCONFIG=	yes
21
18
19
USE_GITHUB=	yes
20
GH_ACCOUNT=	adah1972
21
GH_TAGNAME=	23aa741
22
23
post-configure:
24
	cd ${WRKSRC}/src && ${PATCH} -p1 < ${FILESDIR}/patch_src_Makefile
25
22
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)textproc/libunibreak/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (libunibreak-1.1.tar.gz) = 968bc1314f40c336ad008fff457a058551167cef312d41206a652e23083dc508
1
TIMESTAMP = 1534000458
2
SIZE (libunibreak-1.1.tar.gz) = 601337
2
SHA256 (adah1972-libunibreak-4.0-23aa741_GH0.tar.gz) = 3d86e498a4103c2ee093e6d53e6076fe67148778ae6b377adf1fd2a35d79888c
3
SIZE (adah1972-libunibreak-4.0-23aa741_GH0.tar.gz) = 86106
(-)textproc/libunibreak/files/patch-src__Makefile.in (-15 lines)
Lines 1-15 Link Here
1
--- src/Makefile.in.orig	2015-09-25 12:28:51 UTC
2
+++ src/Makefile.in
3
@@ -521,9 +521,9 @@ uninstall-am: uninstall-includeHEADERS u
4
 
5
 
6
 install-exec-hook:
7
-	- [ -f ${libdir}/libunibreak.a ] && \
8
-	rm -f ${libdir}/liblinebreak.a && \
9
-	${LN_S} ${libdir}/libunibreak.a ${libdir}/liblinebreak.a
10
+#	- [ -f ${libdir}/libunibreak.a ] && \
11
+#	rm -f ${libdir}/liblinebreak.a && \
12
+#	${LN_S} ${libdir}/libunibreak.a ${libdir}/liblinebreak.a
13
 
14
 distclean-local:
15
 	rm -f LineBreak.txt WordBreakData.txt filter_dup${EXEEXT}
(-)textproc/libunibreak/files/patch_src_Makefile (+11 lines)
Line 0 Link Here
1
--- src/Makefile.orig	2018-08-11 15:35:48 UTC
2
+++ src/Makefile
3
@@ -834,7 +834,7 @@ uninstall-am: uninstall-includeHEADERS u
4
 install-exec-hook:
5
 	- [ -f $(DESTDIR)/${libdir}/libunibreak.a ] && \
6
 	rm -f $(DESTDIR)/${libdir}/liblinebreak.a && \
7
-	${LN_S} $(DESTDIR)/${libdir}/libunibreak.a $(DESTDIR)/${libdir}/liblinebreak.a
8
+	${INSTALL_DATA} $(DESTDIR)/${libdir}/libunibreak.a $(DESTDIR)/${libdir}/liblinebreak.a
9
 
10
 distclean-local:
11
 	rm -f LineBreak.txt WordBreakData.txt GraphemeBreakData.txt filter_dup${EXEEXT}
(-)textproc/libunibreak/pkg-plist (-3 / +6 lines)
Lines 1-9 Link Here
1
include/graphemebreak.h
1
include/linebreak.h
2
include/linebreak.h
2
include/linebreakdef.h
3
include/linebreakdef.h
4
include/unibreakbase.h
5
include/unibreakdef.h
3
include/wordbreak.h
6
include/wordbreak.h
4
include/wordbreakdef.h
7
lib/liblinebreak.a
5
lib/libunibreak.a
8
lib/libunibreak.a
6
lib/libunibreak.so
9
lib/libunibreak.so
7
lib/libunibreak.so.1
10
lib/libunibreak.so.3
8
lib/libunibreak.so.1.0.1
11
lib/libunibreak.so.3.1.0
9
libdata/pkgconfig/libunibreak.pc
12
libdata/pkgconfig/libunibreak.pc

Return to bug 230539