1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

- Do not install useless .la files

- Utilize NOPORTDOCS

PR:		45446
Submitted by:	Ports Fury
This commit is contained in:
Ying-Chieh Liao 2002-11-20 13:15:12 +00:00
parent 74b0ae42fd
commit 0097a8100a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=70588
32 changed files with 7448 additions and 7152 deletions

View File

@ -7,37 +7,35 @@
PORTNAME= db4
PORTVERSION= 4.0.14
#PORTREVISION= 2
#PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sleepycat.com/update/snapshot/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
MAINTAINER= ports@FreeBSD.org
#PATCH_SITES= ${MASTER_SITES}
#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
INSTALLS_SHLIB= yes
HAS_CONFIGURE= yes
USE_REINPLACE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 \
--enable-dump185 --enable-cxx \
--enable-dynamic \
--prefix=${PREFIX} \
--includedir=${PREFIX}/include/db4 \
--target=${ARCH}-unknown-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump285 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db4
INSTALLS_SHLIB= yes
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
.endif
post-patch:
@${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure
@${REINPLACE_CMD} -e \
's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001
+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001
--- ../dist/Makefile.in.orig Sat Nov 10 07:48:45 2001
+++ ../dist/Makefile.in Sat Nov 9 17:36:00 2002
@@ -11,7 +11,7 @@
bindir= @bindir@
includedir=@includedir@
@ -133,3 +133,12 @@
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
@@ -385,7 +386,7 @@
# Library and standard utilities install.
##################################################
library_install: install_setup
-library_install: install_include install_lib install_utilities install_docs
+library_install: install_include install_lib install_utilities
uninstall: uninstall_include uninstall_lib uninstall_utilities uninstall_docs

View File

@ -0,0 +1,32 @@
--- ../dist/ltmain.sh.orig Sat Nov 17 01:15:01 2001
+++ ../dist/ltmain.sh Sat Nov 9 17:08:02 2002
@@ -1043,14 +1043,14 @@
# These systems don't actually have a C library (as such)
test "X$arg" = "X-lc" && continue
;;
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -4217,10 +4217,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"

File diff suppressed because it is too large Load Diff

View File

@ -7,37 +7,35 @@
PORTNAME= db4
PORTVERSION= 4.0.14
#PORTREVISION= 2
#PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sleepycat.com/update/snapshot/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
MAINTAINER= ports@FreeBSD.org
#PATCH_SITES= ${MASTER_SITES}
#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
INSTALLS_SHLIB= yes
HAS_CONFIGURE= yes
USE_REINPLACE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 \
--enable-dump185 --enable-cxx \
--enable-dynamic \
--prefix=${PREFIX} \
--includedir=${PREFIX}/include/db4 \
--target=${ARCH}-unknown-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump285 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db4
INSTALLS_SHLIB= yes
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
.endif
post-patch:
@${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure
@${REINPLACE_CMD} -e \
's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001
+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001
--- ../dist/Makefile.in.orig Sat Nov 10 07:48:45 2001
+++ ../dist/Makefile.in Sat Nov 9 17:36:00 2002
@@ -11,7 +11,7 @@
bindir= @bindir@
includedir=@includedir@
@ -133,3 +133,12 @@
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
@@ -385,7 +386,7 @@
# Library and standard utilities install.
##################################################
library_install: install_setup
-library_install: install_include install_lib install_utilities install_docs
+library_install: install_include install_lib install_utilities
uninstall: uninstall_include uninstall_lib uninstall_utilities uninstall_docs

View File

@ -0,0 +1,32 @@
--- ../dist/ltmain.sh.orig Sat Nov 17 01:15:01 2001
+++ ../dist/ltmain.sh Sat Nov 9 17:08:02 2002
@@ -1043,14 +1043,14 @@
# These systems don't actually have a C library (as such)
test "X$arg" = "X-lc" && continue
;;
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -4217,10 +4217,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"

File diff suppressed because it is too large Load Diff

View File

@ -7,37 +7,35 @@
PORTNAME= db4
PORTVERSION= 4.0.14
#PORTREVISION= 2
#PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sleepycat.com/update/snapshot/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
MAINTAINER= ports@FreeBSD.org
#PATCH_SITES= ${MASTER_SITES}
#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
INSTALLS_SHLIB= yes
HAS_CONFIGURE= yes
USE_REINPLACE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 \
--enable-dump185 --enable-cxx \
--enable-dynamic \
--prefix=${PREFIX} \
--includedir=${PREFIX}/include/db4 \
--target=${ARCH}-unknown-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump285 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db4
INSTALLS_SHLIB= yes
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
.endif
post-patch:
@${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure
@${REINPLACE_CMD} -e \
's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001
+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001
--- ../dist/Makefile.in.orig Sat Nov 10 07:48:45 2001
+++ ../dist/Makefile.in Sat Nov 9 17:36:00 2002
@@ -11,7 +11,7 @@
bindir= @bindir@
includedir=@includedir@
@ -133,3 +133,12 @@
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
@@ -385,7 +386,7 @@
# Library and standard utilities install.
##################################################
library_install: install_setup
-library_install: install_include install_lib install_utilities install_docs
+library_install: install_include install_lib install_utilities
uninstall: uninstall_include uninstall_lib uninstall_utilities uninstall_docs

View File

@ -0,0 +1,32 @@
--- ../dist/ltmain.sh.orig Sat Nov 17 01:15:01 2001
+++ ../dist/ltmain.sh Sat Nov 9 17:08:02 2002
@@ -1043,14 +1043,14 @@
# These systems don't actually have a C library (as such)
test "X$arg" = "X-lc" && continue
;;
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -4217,10 +4217,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"

File diff suppressed because it is too large Load Diff

View File

@ -7,37 +7,35 @@
PORTNAME= db4
PORTVERSION= 4.0.14
#PORTREVISION= 2
#PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sleepycat.com/update/snapshot/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
MAINTAINER= ports@FreeBSD.org
#PATCH_SITES= ${MASTER_SITES}
#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
INSTALLS_SHLIB= yes
HAS_CONFIGURE= yes
USE_REINPLACE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 \
--enable-dump185 --enable-cxx \
--enable-dynamic \
--prefix=${PREFIX} \
--includedir=${PREFIX}/include/db4 \
--target=${ARCH}-unknown-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump285 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db4
INSTALLS_SHLIB= yes
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
.endif
post-patch:
@${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure
@${REINPLACE_CMD} -e \
's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001
+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001
--- ../dist/Makefile.in.orig Sat Nov 10 07:48:45 2001
+++ ../dist/Makefile.in Sat Nov 9 17:36:00 2002
@@ -11,7 +11,7 @@
bindir= @bindir@
includedir=@includedir@
@ -133,3 +133,12 @@
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
@@ -385,7 +386,7 @@
# Library and standard utilities install.
##################################################
library_install: install_setup
-library_install: install_include install_lib install_utilities install_docs
+library_install: install_include install_lib install_utilities
uninstall: uninstall_include uninstall_lib uninstall_utilities uninstall_docs

View File

@ -0,0 +1,32 @@
--- ../dist/ltmain.sh.orig Sat Nov 17 01:15:01 2001
+++ ../dist/ltmain.sh Sat Nov 9 17:08:02 2002
@@ -1043,14 +1043,14 @@
# These systems don't actually have a C library (as such)
test "X$arg" = "X-lc" && continue
;;
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -4217,10 +4217,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"

File diff suppressed because it is too large Load Diff

View File

@ -7,37 +7,35 @@
PORTNAME= db4
PORTVERSION= 4.0.14
#PORTREVISION= 2
#PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sleepycat.com/update/snapshot/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
MAINTAINER= ports@FreeBSD.org
#PATCH_SITES= ${MASTER_SITES}
#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
INSTALLS_SHLIB= yes
HAS_CONFIGURE= yes
USE_REINPLACE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 \
--enable-dump185 --enable-cxx \
--enable-dynamic \
--prefix=${PREFIX} \
--includedir=${PREFIX}/include/db4 \
--target=${ARCH}-unknown-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump285 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db4
INSTALLS_SHLIB= yes
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
.endif
post-patch:
@${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure
@${REINPLACE_CMD} -e \
's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001
+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001
--- ../dist/Makefile.in.orig Sat Nov 10 07:48:45 2001
+++ ../dist/Makefile.in Sat Nov 9 17:36:00 2002
@@ -11,7 +11,7 @@
bindir= @bindir@
includedir=@includedir@
@ -133,3 +133,12 @@
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
@@ -385,7 +386,7 @@
# Library and standard utilities install.
##################################################
library_install: install_setup
-library_install: install_include install_lib install_utilities install_docs
+library_install: install_include install_lib install_utilities
uninstall: uninstall_include uninstall_lib uninstall_utilities uninstall_docs

View File

@ -0,0 +1,32 @@
--- ../dist/ltmain.sh.orig Sat Nov 17 01:15:01 2001
+++ ../dist/ltmain.sh Sat Nov 9 17:08:02 2002
@@ -1043,14 +1043,14 @@
# These systems don't actually have a C library (as such)
test "X$arg" = "X-lc" && continue
;;
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -4217,10 +4217,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"

File diff suppressed because it is too large Load Diff

View File

@ -7,37 +7,35 @@
PORTNAME= db4
PORTVERSION= 4.0.14
#PORTREVISION= 2
#PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sleepycat.com/update/snapshot/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
MAINTAINER= ports@FreeBSD.org
#PATCH_SITES= ${MASTER_SITES}
#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
INSTALLS_SHLIB= yes
HAS_CONFIGURE= yes
USE_REINPLACE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 \
--enable-dump185 --enable-cxx \
--enable-dynamic \
--prefix=${PREFIX} \
--includedir=${PREFIX}/include/db4 \
--target=${ARCH}-unknown-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump285 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db4
INSTALLS_SHLIB= yes
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
.endif
post-patch:
@${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure
@${REINPLACE_CMD} -e \
's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001
+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001
--- ../dist/Makefile.in.orig Sat Nov 10 07:48:45 2001
+++ ../dist/Makefile.in Sat Nov 9 17:36:00 2002
@@ -11,7 +11,7 @@
bindir= @bindir@
includedir=@includedir@
@ -133,3 +133,12 @@
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
@@ -385,7 +386,7 @@
# Library and standard utilities install.
##################################################
library_install: install_setup
-library_install: install_include install_lib install_utilities install_docs
+library_install: install_include install_lib install_utilities
uninstall: uninstall_include uninstall_lib uninstall_utilities uninstall_docs

View File

@ -0,0 +1,32 @@
--- ../dist/ltmain.sh.orig Sat Nov 17 01:15:01 2001
+++ ../dist/ltmain.sh Sat Nov 9 17:08:02 2002
@@ -1043,14 +1043,14 @@
# These systems don't actually have a C library (as such)
test "X$arg" = "X-lc" && continue
;;
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -4217,10 +4217,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"

File diff suppressed because it is too large Load Diff

View File

@ -7,37 +7,35 @@
PORTNAME= db4
PORTVERSION= 4.0.14
#PORTREVISION= 2
#PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sleepycat.com/update/snapshot/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
MAINTAINER= ports@FreeBSD.org
#PATCH_SITES= ${MASTER_SITES}
#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
INSTALLS_SHLIB= yes
HAS_CONFIGURE= yes
USE_REINPLACE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 \
--enable-dump185 --enable-cxx \
--enable-dynamic \
--prefix=${PREFIX} \
--includedir=${PREFIX}/include/db4 \
--target=${ARCH}-unknown-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump285 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db4
INSTALLS_SHLIB= yes
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
.endif
post-patch:
@${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure
@${REINPLACE_CMD} -e \
's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001
+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001
--- ../dist/Makefile.in.orig Sat Nov 10 07:48:45 2001
+++ ../dist/Makefile.in Sat Nov 9 17:36:00 2002
@@ -11,7 +11,7 @@
bindir= @bindir@
includedir=@includedir@
@ -133,3 +133,12 @@
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
@@ -385,7 +386,7 @@
# Library and standard utilities install.
##################################################
library_install: install_setup
-library_install: install_include install_lib install_utilities install_docs
+library_install: install_include install_lib install_utilities
uninstall: uninstall_include uninstall_lib uninstall_utilities uninstall_docs

View File

@ -0,0 +1,32 @@
--- ../dist/ltmain.sh.orig Sat Nov 17 01:15:01 2001
+++ ../dist/ltmain.sh Sat Nov 9 17:08:02 2002
@@ -1043,14 +1043,14 @@
# These systems don't actually have a C library (as such)
test "X$arg" = "X-lc" && continue
;;
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -4217,10 +4217,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"

File diff suppressed because it is too large Load Diff

View File

@ -7,37 +7,35 @@
PORTNAME= db4
PORTVERSION= 4.0.14
#PORTREVISION= 2
#PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://www.sleepycat.com/update/snapshot/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
MAINTAINER= ports@FreeBSD.org
#PATCH_SITES= ${MASTER_SITES}
#PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
#PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
INSTALLS_SHLIB= yes
HAS_CONFIGURE= yes
USE_REINPLACE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS= --enable-compat185 \
--enable-dump185 --enable-cxx \
--enable-dynamic \
--prefix=${PREFIX} \
--includedir=${PREFIX}/include/db4 \
--target=${ARCH}-unknown-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump285 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db4
INSTALLS_SHLIB= yes
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
.endif
post-patch:
@${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/../dist/configure
@${REINPLACE_CMD} -e \
's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
--- ../dist/Makefile.in.orig Sat Nov 10 01:48:45 2001
+++ ../dist/Makefile.in Wed Dec 5 13:38:23 2001
--- ../dist/Makefile.in.orig Sat Nov 10 07:48:45 2001
+++ ../dist/Makefile.in Sat Nov 9 17:36:00 2002
@@ -11,7 +11,7 @@
bindir= @bindir@
includedir=@includedir@
@ -133,3 +133,12 @@
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
@@ -385,7 +386,7 @@
# Library and standard utilities install.
##################################################
library_install: install_setup
-library_install: install_include install_lib install_utilities install_docs
+library_install: install_include install_lib install_utilities
uninstall: uninstall_include uninstall_lib uninstall_utilities uninstall_docs

View File

@ -0,0 +1,32 @@
--- ../dist/ltmain.sh.orig Sat Nov 17 01:15:01 2001
+++ ../dist/ltmain.sh Sat Nov 9 17:08:02 2002
@@ -1043,14 +1043,14 @@
# These systems don't actually have a C library (as such)
test "X$arg" = "X-lc" && continue
;;
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc due to us having libc/libc_r.
test "X$arg" = "X-lc" && continue
;;
esac
elif test "X$arg" = "X-lc_r"; then
case $host in
- *-*-openbsd*)
+ *-*-openbsd* | *-*-freebsd*)
# Do not include libc_r directly, use -pthread flag.
continue
;;
@@ -4217,10 +4217,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"

File diff suppressed because it is too large Load Diff