diff -r --unified ./Portfile /Users/blarsen/project/git-core/Portfile
old
|
new
|
|
2 | 2 | |
3 | 3 | PortSystem 1.0 |
4 | 4 | name git-core |
5 | | version 1.4.0 |
| 5 | version 1.4.4.1 |
6 | 6 | description The stupid content tracker. |
7 | 7 | long_description A stupid (but extremely fast) directory \ |
8 | 8 | content manager. It doesn't do a whole lot, \ |
… |
… |
|
14 | 14 | homepage http://kernel.org/git/ |
15 | 15 | use_bzip2 yes |
16 | 16 | master_sites http://www.kernel.org/pub/software/scm/git/ |
17 | | checksums md5 923fa60aca74db3ce175c9a2c665f240 |
| 17 | checksums md5 504521167df43146e1f5d69aa5c5e023 |
18 | 18 | distname git-${version} |
19 | 19 | depends_run bin:curl:curl bin:diff:diffutils bin:merge:rcs bin:wish:tk \ |
20 | 20 | bin:ssh:openssh bin:python:python24 bin:rsync:rsync \ |
… |
… |
|
26 | 26 | use_configure no |
27 | 27 | |
28 | 28 | build.env CFLAGS="-Wall -O2 -I${prefix}/include" LDFLAGS="-L${prefix}/lib" |
29 | | build.args prefix=${prefix} CURLDIR=${prefix} OPENSSLDIR=${prefix} ICONVDIR=${prefix} |
| 29 | build.args prefix=${prefix} CURLDIR=${prefix} OPENSSLDIR=${prefix} ICONVDIR=${prefix} NO_FINK=1 NO_DARWIN_PORTS=1 |
30 | 30 | |
31 | 31 | destroot.destdir DESTDIR=${destroot} prefix=${prefix} |
32 | 32 | destroot.target install |
diff -r --unified ./files/patch-Makefiles /Users/blarsen/project/git-core/files/patch-Makefiles
old
|
new
|
|
1 | | diff --recursive --unified ../git-1.4.0.orig/Documentation/Makefile ./Documentation/Makefile |
2 | | --- ../git-1.4.0.orig/Documentation/Makefile 2006-06-10 15:41:54.000000000 -0400 |
3 | | +++ ./Documentation/Makefile 2006-06-29 22:48:15.000000000 -0400 |
| 1 | --- Documentation/Makefile.orig 2006-11-22 21:38:07.000000000 -0500 |
| 2 | +++ Documentation/Makefile 2006-11-28 15:42:24.000000000 -0500 |
4 | 3 | @@ -26,7 +26,7 @@ |
5 | 4 | |
6 | 5 | prefix?=$(HOME) |
7 | | bin=$(prefix)/bin |
8 | | -mandir=$(prefix)/man |
9 | | +mandir=$(prefix)/share/man |
10 | | man1=$(mandir)/man1 |
11 | | man7=$(mandir)/man7 |
| 6 | bindir?=$(prefix)/bin |
| 7 | -mandir?=$(prefix)/man |
| 8 | +mandir?=$(prefix)/share/man |
| 9 | man1dir=$(mandir)/man1 |
| 10 | man7dir=$(mandir)/man7 |
12 | 11 | # DESTDIR= |
13 | | diff --recursive --unified ../git-1.4.0.orig/Makefile ./Makefile |
14 | | --- ../git-1.4.0.orig/Makefile 2006-06-10 15:41:54.000000000 -0400 |
15 | | +++ ./Makefile 2006-06-29 22:50:34.000000000 -0400 |
16 | | @@ -85,8 +85,6 @@ |
| 12 | --- Makefile.orig 2006-11-22 21:38:07.000000000 -0500 |
| 13 | +++ Makefile 2006-11-28 15:21:34.000000000 -0500 |
| 14 | @@ -106,8 +106,6 @@ |
17 | 15 | |
18 | 16 | # CFLAGS and LDFLAGS are for the users to override from the command line. |
19 | 17 | |
… |
… |
|
22 | 20 | ALL_CFLAGS = $(CFLAGS) |
23 | 21 | ALL_LDFLAGS = $(LDFLAGS) |
24 | 22 | STRIP ?= strip |
25 | | @@ -243,16 +241,6 @@ |
26 | | ifeq ($(uname_S),Darwin) |
27 | | NEEDS_SSL_WITH_CRYPTO = YesPlease |
28 | | NEEDS_LIBICONV = YesPlease |
29 | | - ## fink |
30 | | - ifeq ($(shell test -d /sw/lib && echo y),y) |
31 | | - ALL_CFLAGS += -I/sw/include |
32 | | - ALL_LDFLAGS += -L/sw/lib |
33 | | - endif |
34 | | - ## darwinports |
35 | | - ifeq ($(shell test -d /opt/local/lib && echo y),y) |
36 | | - ALL_CFLAGS += -I/opt/local/include |
37 | | - ALL_LDFLAGS += -L/opt/local/lib |
38 | | - endif |
39 | | endif |
40 | | ifeq ($(uname_S),SunOS) |
41 | | NEEDS_SOCKET = YesPlease |
42 | | @@ -337,7 +325,7 @@ |
| 23 | @@ -437,7 +435,7 @@ |
43 | 24 | ifdef CURLDIR |
44 | 25 | # This is still problematic -- gcc does not always want -R. |
45 | | ALL_CFLAGS += -I$(CURLDIR)/include |
| 26 | BASIC_CFLAGS += -I$(CURLDIR)/include |
46 | 27 | - CURL_LIBCURL = -L$(CURLDIR)/lib -R$(CURLDIR)/lib -lcurl |
47 | 28 | + CURL_LIBCURL = -L$(CURLDIR)/lib -lcurl |
48 | 29 | else |
49 | 30 | CURL_LIBCURL = -lcurl |
50 | 31 | endif |
51 | | @@ -358,7 +346,7 @@ |
| 32 | @@ -458,7 +456,7 @@ |
52 | 33 | ifdef OPENSSLDIR |
53 | 34 | # Again this may be problematic -- gcc does not always want -R. |
54 | | ALL_CFLAGS += -I$(OPENSSLDIR)/include |
| 35 | BASIC_CFLAGS += -I$(OPENSSLDIR)/include |
55 | 36 | - OPENSSL_LINK = -L$(OPENSSLDIR)/lib -R$(OPENSSLDIR)/lib |
56 | 37 | + OPENSSL_LINK = -L$(OPENSSLDIR)/lib |
57 | 38 | else |
58 | 39 | OPENSSL_LINK = |
59 | 40 | endif |
60 | | @@ -376,7 +364,7 @@ |
| 41 | @@ -476,7 +474,7 @@ |
61 | 42 | ifdef ICONVDIR |
62 | 43 | # Again this may be problematic -- gcc does not always want -R. |
63 | | ALL_CFLAGS += -I$(ICONVDIR)/include |
| 44 | BASIC_CFLAGS += -I$(ICONVDIR)/include |
64 | 45 | - ICONV_LINK = -L$(ICONVDIR)/lib -R$(ICONVDIR)/lib |
65 | 46 | + ICONV_LINK = -L$(ICONVDIR)/lib |
66 | 47 | else |