mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
- Update to 1.3
PR: ports/81854 Submitted by: Ports Fury
This commit is contained in:
parent
6378ee00be
commit
809ed861df
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=136813
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= libredblack
|
||||
PORTVERSION= 1.2
|
||||
PORTVERSION= 1.3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -14,10 +14,25 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Library that provides the red-black balanced tree algorithm
|
||||
|
||||
MAN3= rbcloselist.3 rbdelete.3 rbdestroy.3 rbfind.3 rbinit.3 rblookup.3 \
|
||||
rbopenlist.3 rbreadlist.3 rbsearch.3 rbwalk.3
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 15
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
MAN1= rbgen.1
|
||||
MAN3= rbcloselist.3 rbdelete.3 rbdestroy.3 rbfind.3 rbinit.3 \
|
||||
rblookup.3 rbopenlist.3 rbreadlist.3 rbsearch.3 rbwalk.3
|
||||
|
||||
.if defined(WITHOUT_PYTHON)
|
||||
CONFIGURE_ARGS+= --without-rbgen
|
||||
PLIST_SUB+= PYTHON="@comment "
|
||||
.else
|
||||
USE_PYTHON= yes
|
||||
PLIST_SUB+= PYTHON=""
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e \
|
||||
's|^CFLAGS =.*$$|CFLAGS = @CFLAGS@|g' ${WRKSRC}/Makefile.in
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (libredblack-1.2.tar.gz) = 0719f20f718256a506b00b2c13f4dfd6
|
||||
SIZE (libredblack-1.2.tar.gz) = 177211
|
||||
MD5 (libredblack-1.3.tar.gz) = 2b3d5cf18b7c611febdd946411b1e9c7
|
||||
SIZE (libredblack-1.3.tar.gz) = 209564
|
||||
|
@ -1,25 +0,0 @@
|
||||
--- ltmain.sh.orig Fri Mar 3 10:50:28 2000
|
||||
+++ ltmain.sh Mon Apr 15 12:52:12 2002
|
||||
@@ -1795,6 +1795,9 @@
|
||||
*-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)
|
||||
# these systems don't actually have a c library (as such)!
|
||||
;;
|
||||
+ *-*-freebsd*)
|
||||
+ # FreeBSD doesn't need this...
|
||||
+ ;;
|
||||
*)
|
||||
# Add libc to deplibs on all other systems.
|
||||
deplibs="$deplibs -lc"
|
||||
@@ -3348,10 +3351,12 @@
|
||||
fi
|
||||
|
||||
# Install the pseudo-library for information purposes.
|
||||
+ if /usr/bin/false; then
|
||||
name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
|
||||
instname="$dir/$name"i
|
||||
$show "$install_prog $instname $destdir/$name"
|
||||
$run eval "$install_prog $instname $destdir/$name" || exit $?
|
||||
+ fi
|
||||
|
||||
# Maybe install the static library, too.
|
||||
test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
|
@ -1,4 +1,8 @@
|
||||
%%PYTHON%%bin/rbgen
|
||||
include/redblack.h
|
||||
lib/libredblack.a
|
||||
lib/libredblack.so
|
||||
lib/libredblack.so.2
|
||||
include/redblack.h
|
||||
%%DATADIR%%/redblack.c
|
||||
%%DATADIR%%/redblack.h
|
||||
@dirrm %%DATADIR%%
|
||||
|
Loading…
Reference in New Issue
Block a user