diff options
author | rafan <rafan@FreeBSD.org> | 2009-02-07 13:37:11 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2009-02-07 13:37:11 +0800 |
commit | 0a811cd5243bca9d1b7f0e45a0b3375c6d66fc02 (patch) | |
tree | 00b19d4725cb715f55d6526ae6b88a2369ee5710 /sysutils | |
parent | e8adbe01d900a48e1d8cc1f4d12fe193020ce169 (diff) | |
download | freebsd-ports-gnome-0a811cd5243bca9d1b7f0e45a0b3375c6d66fc02.tar.gz freebsd-ports-gnome-0a811cd5243bca9d1b7f0e45a0b3375c6d66fc02.tar.zst freebsd-ports-gnome-0a811cd5243bca9d1b7f0e45a0b3375c6d66fc02.zip |
- Update to 1.5.2.2
PR: ports/131406
Submitted by: Yi-Jheng Lin <yzlin at cs.nctu.edu.tw>
Approved by: Guy Brand <gb at unistra.fr> (maintainer)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/tree/Makefile | 2 | ||||
-rw-r--r-- | sysutils/tree/distinfo | 6 | ||||
-rw-r--r-- | sysutils/tree/files/patch-Makefile | 24 |
3 files changed, 18 insertions, 14 deletions
diff --git a/sysutils/tree/Makefile b/sysutils/tree/Makefile index a2cc1a67ce40..3d7dee96d442 100644 --- a/sysutils/tree/Makefile +++ b/sysutils/tree/Makefile @@ -6,7 +6,7 @@ # PORTNAME= tree -PORTVERSION= 1.5.2.1 +PORTVERSION= 1.5.2.2 CATEGORIES= sysutils MASTER_SITES= ftp://mama.indstate.edu/linux/tree/ \ CENKES diff --git a/sysutils/tree/distinfo b/sysutils/tree/distinfo index 4424bc669a41..19f6d1210f6c 100644 --- a/sysutils/tree/distinfo +++ b/sysutils/tree/distinfo @@ -1,3 +1,3 @@ -MD5 (tree-1.5.2.1.tgz) = 73d5fa220dfef1ee9c1876c3966f1c18 -SHA256 (tree-1.5.2.1.tgz) = 9189a74ee6f740e48884e3eedf9b55013a8f4a46c1f448ce79bdf39ed9a708f4 -SIZE (tree-1.5.2.1.tgz) = 33584 +MD5 (tree-1.5.2.2.tgz) = a7731a898e2c0d7e422a57a84ffbb06c +SHA256 (tree-1.5.2.2.tgz) = bfd4ceca156a9f20352c1b5d44312c5a223a7cac3480d6eaef46edadded7c539 +SIZE (tree-1.5.2.2.tgz) = 33993 diff --git a/sysutils/tree/files/patch-Makefile b/sysutils/tree/files/patch-Makefile index b0b7f8cc227a..3681d7cb4f4d 100644 --- a/sysutils/tree/files/patch-Makefile +++ b/sysutils/tree/files/patch-Makefile @@ -1,5 +1,8 @@ ---- Makefile.orig 2008-09-22 15:51:25.000000000 +0800 -+++ Makefile 2008-09-22 15:56:58.000000000 +0800 + +$FreeBSD$ + +--- Makefile.orig ++++ Makefile @@ -6,27 +6,27 @@ # warranties, including, without limitation, the implied warranties # of merchant-ability and fitness for a particular purpose. @@ -7,9 +10,10 @@ -prefix = /usr +prefix = ${PREFIX} - CC=gcc +-CC=gcc ++CC?=gcc - VERSION=1.5.2.1 + VERSION=1.5.2.2 TREE_DEST=tree BINDIR=${prefix}/bin -MAN=tree.1 @@ -33,13 +37,13 @@ +LDFLAGS?=-s +XOBJS=strverscmp.o - # Uncomment for Cygwin: - #CFLAGS=-O2 -Wall -fomit-frame-pointer -DCYGWIN -@@ -68,13 +68,11 @@ + # Uncomment for Solaris: + #CC=cc +@@ -82,13 +82,11 @@ if [ -f tree.o ]; then rm *.o; fi rm -f *~ --install: +-install: tree - install -d $(BINDIR) - install -d $(MANDIR) - if [ -e $(TREE_DEST) ]; then \ @@ -47,8 +51,8 @@ - fi - install man/$(MAN) $(MANDIR)/$(MAN) +install: $(TREE_DEST) -+ $(MKDIR) $(BINDIR) -+ $(MKDIR) $(MANDIR) ++ @$(MKDIR) $(BINDIR) ++ @$(MKDIR) $(MANDIR) + ${BSD_INSTALL_PROGRAM} $(TREE_DEST) $(BINDIR) + ${BSD_INSTALL_MAN} $(MAN) $(MANDIR) |