SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,25 @@
Index: Makefile.in
--- Makefile.in.orig
+++ Makefile.in
@@ -416,15 +416,15 @@ install-lib-binaries: binaries
@$(INSTALL_DATA_DIR) "$(DESTDIR)$(pkglibdir)"
@list='$(lib_BINARIES)'; for p in $$list; do \
if test -f $$p; then \
- echo " $(INSTALL_LIBRARY) $$p $(DESTDIR)$(pkglibdir)/$$p"; \
- $(INSTALL_LIBRARY) $$p "$(DESTDIR)$(pkglibdir)/$$p"; \
+ echo " $(INSTALL_LIBRARY) $$p $(DESTDIR)$(libdir)/$$p"; \
+ $(INSTALL_LIBRARY) $$p "$(DESTDIR)$(libdir)/$$p"; \
stub=`echo $$p|sed -e "s/.*\(stub\).*/\1/"`; \
if test "x$$stub" = "xstub"; then \
- echo " $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p"; \
- $(RANLIB_STUB) "$(DESTDIR)$(pkglibdir)/$$p"; \
+ echo " $(RANLIB_STUB) $(DESTDIR)$(libdir)/$$p"; \
+ $(RANLIB_STUB) "$(DESTDIR)$(libdir)/$$p"; \
else \
- echo " $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p"; \
- $(RANLIB) "$(DESTDIR)$(pkglibdir)/$$p"; \
+ echo " $(RANLIB) $(DESTDIR)$(libdir)/$$p"; \
+ $(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \
fi; \
ext=`echo $$p|sed -e "s/.*\.//"`; \
if test "x$$ext" = "xdll"; then \

View file

@ -0,0 +1,12 @@
Index: configure
--- configure.orig
+++ configure
@@ -606,7 +606,7 @@ MFLAGS=
MAKEFLAGS=
# Identity of this package.
-PACKAGE_NAME='thread'
+PACKAGE_NAME='tclthread'
PACKAGE_TARNAME='thread'
PACKAGE_VERSION='2.8.8'
PACKAGE_STRING='thread 2.8.8'

View file

@ -0,0 +1,12 @@
Index: pkgIndex.tcl.in
--- pkgIndex.tcl.in.orig
+++ pkgIndex.tcl.in
@@ -23,7 +23,7 @@ if {![package vsatisfies [package provide Tcl] 8.4]} {
# about a thread-disabled interp, instead of the message
# "can't find package Thread".
-package ifneeded Thread @PACKAGE_VERSION@ [list load [file join $dir @PKG_LIB_FILE@] [string totitle @PACKAGE_NAME@]]
+package ifneeded Thread @PACKAGE_VERSION@ [list load [file join $dir .. .. @PKG_LIB_FILE@] Thread]
# package Ttrace uses some support machinery.