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

(-)b/math/openlibm/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	openlibm
4
PORTNAME=	openlibm
5
PORTVERSION=	0.5.1
5
PORTVERSION=	0.5.2
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
CATEGORIES=	math
7
CATEGORIES=	math
8
MASTER_SITES=	GH
8
MASTER_SITES=	GH
(-)b/math/openlibm/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1464004057
1
TIMESTAMP = 1470710614
2
SHA256 (JuliaLang-openlibm-v0.5.1_GH0.tar.gz) = 782a77497071cc450af176bbfebb34834334f6a17de842fe75cd407bbee89f85
2
SHA256 (JuliaLang-openlibm-v0.5.2_GH0.tar.gz) = f394c90426356c8911333def8cee94971492a94ca94578e61ad857913c80122c
3
SIZE (JuliaLang-openlibm-v0.5.1_GH0.tar.gz) = 352866
3
SIZE (JuliaLang-openlibm-v0.5.2_GH0.tar.gz) = 352770
(-)b/math/openlibm/files/patch-Make.inc (-8 / +3 lines)
Lines 1-13 Link Here
1
--- Make.inc.orig	2016-05-23 11:57:41 UTC
1
--- Make.inc.orig	2016-08-06 15:00:31 UTC
2
+++ Make.inc
2
+++ Make.inc
3
@@ -3,11 +3,11 @@
3
@@ -7,7 +7,7 @@ VERSION = 0.5.2
4
 OS := $(shell uname)
5
 # Do not forget to bump SOMINOR when changing VERSION,
6
 # and SOMAJOR when breaking ABI in a backward-incompatible way
7
-VERSION = 0.5.1-dev
8
+VERSION = 0.5.1
9
 SOMAJOR = 2
4
 SOMAJOR = 2
10
 SOMINOR = 2
5
 SOMINOR = 3
11
 DESTDIR =
6
 DESTDIR =
12
-prefix = /usr/local
7
-prefix = /usr/local
13
+prefix ?= /usr/local
8
+prefix ?= /usr/local
(-)b/math/openlibm/files/patch-Makefile (-10 / +21 lines)
Lines 1-16 Link Here
1
--- Makefile.orig	2016-05-23 11:53:14 UTC
1
--- Makefile.orig	2016-08-06 15:00:31 UTC
2
+++ Makefile
2
+++ Makefile
3
@@ -78,8 +78,8 @@ install: all openlibm.pc
3
@@ -77,19 +77,19 @@ openlibm.pc: openlibm.pc.in Make.inc Mak
4
 
5
 install-static: libopenlibm.a
6
 	mkdir -p $(DESTDIR)$(libdir)
7
-	cp -f -a libopenlibm.a $(DESTDIR)$(libdir)/
8
+	$(BSD_INSTALL_DATA) libopenlibm.a $(DESTDIR)$(libdir)/
9
 
10
 install-shared: libopenlibm.$(OLM_MAJOR_MINOR_SHLIB_EXT)
4
 	mkdir -p $(DESTDIR)$(shlibdir)
11
 	mkdir -p $(DESTDIR)$(shlibdir)
12
-	cp -f -a libopenlibm.*$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/
13
+	$(BSD_INSTALL_LIB) libopenlibm.*$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/
14
 
15
 install-pkgconfig: openlibm.pc
5
 	mkdir -p $(DESTDIR)$(pkgconfigdir)
16
 	mkdir -p $(DESTDIR)$(pkgconfigdir)
17
-	cp -f -a openlibm.pc $(DESTDIR)$(pkgconfigdir)/
18
+	$(BSD_INSTALL_DATA) openlibm.pc $(DESTDIR)$(pkgconfigdir)/
19
 
20
 install-headers:
6
 	mkdir -p $(DESTDIR)$(includedir)/openlibm
21
 	mkdir -p $(DESTDIR)$(includedir)/openlibm
7
-	cp -f -a libopenlibm.*$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/
8
-	cp -f -a libopenlibm.a $(DESTDIR)$(libdir)/
9
-	cp -f -a include/*.h $(DESTDIR)$(includedir)/openlibm
22
-	cp -f -a include/*.h $(DESTDIR)$(includedir)/openlibm
10
-	cp -f -a src/*.h $(DESTDIR)$(includedir)/openlibm
23
-	cp -f -a src/*.h $(DESTDIR)$(includedir)/openlibm
11
-	cp -f -a openlibm.pc $(DESTDIR)$(pkgconfigdir)/
24
+	$(BSD_INSTALL_DATA) include/*.h $(DESTDIR)$(includedir)/openlibm
12
+	${BSD_INSTALL_LIB} libopenlibm.*$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/
25
+	$(BSD_INSTALL_DATA) src/*.h $(DESTDIR)$(includedir)/openlibm
13
+	${BSD_INSTALL_DATA} libopenlibm.a $(DESTDIR)$(libdir)/
26
 
14
+	${BSD_INSTALL_DATA} include/*.h $(DESTDIR)$(includedir)/openlibm
27
 install: install-static install-shared install-pkgconfig install-headers
15
+	${BSD_INSTALL_DATA} src/*.h $(DESTDIR)$(includedir)/openlibm
16
+	${BSD_INSTALL_DATA} openlibm.pc $(DESTDIR)$(pkgconfigdir)/
(-)b/math/openlibm/pkg-plist (-1 / +1 lines)
Lines 21-25 include/openlibm/types-compat.h Link Here
21
lib/libopenlibm.a
21
lib/libopenlibm.a
22
lib/libopenlibm.so
22
lib/libopenlibm.so
23
lib/libopenlibm.so.2
23
lib/libopenlibm.so.2
24
lib/libopenlibm.so.2.2
24
lib/libopenlibm.so.2.3
25
libdata/pkgconfig/openlibm.pc
25
libdata/pkgconfig/openlibm.pc

Return to bug 211687