mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 16:50:29 -04:00
Changes: - Drop local mirror from MASTER_SITES - Update to latest commit after 1.0.10 release (see change log) - Simplify option specific extra patches - Patch scr.pro with the port's version - Fix patch per portlint's recommendation Change Log: - Fix bug exposed by update to svn-1.9: deleted directories are not available in the revision the directory was deleted in [1]. PR: 204023 Reported by: Guy Helmer <guy.helmer@gmail.com> [1] Differential Revision: https://reviews.freebsd.org/D4066
23 lines
909 B
INI
23 lines
909 B
INI
--- src/src.pro.orig 2015-12-01 09:05:19 UTC
|
|
+++ src/src.pro
|
|
@@ -2,8 +2,9 @@
|
|
# Automatically generated by qmake (2.01a) dim. dc. 23 13:49:28 2007
|
|
######################################################################
|
|
|
|
-SVN_INCLUDE = /usr/include/subversion-1 /usr/local/include/subversion-1
|
|
-APR_INCLUDE = /usr/include/apr-1.0 /usr/include/apr-1 /usr/local/include/apr-1
|
|
+LOCALBASE = /usr/local
|
|
+SVN_INCLUDE = $${LOCALBASE}/include/subversion-1
|
|
+APR_INCLUDE = $${LOCALBASE}/include/apr-1
|
|
exists(local-config.pri):include(local-config.pri)
|
|
|
|
VERSION = $$system(git --no-pager show --pretty=oneline --no-notes | head -1 | cut -b-40)
|
|
@@ -15,7 +16,7 @@ VERSTR = '\\"$${VERSION}\\"' # place quotes around the version string
|
|
DEFINES += VER=\"$${VERSTR}\" # create a VER macro containing the version string
|
|
|
|
TEMPLATE = app
|
|
-TARGET = ../svn-all-fast-export
|
|
+TARGET = ../svn2git
|
|
DEPENDPATH += .
|
|
QT = core
|
|
|