mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
graphics/airsaned: update to 0.3.2.54
PR: 261068 Reported by: fbsd@opal.com (maintainer)
This commit is contained in:
parent
e49e8e5d00
commit
fa24020b47
@ -1,7 +1,7 @@
|
||||
PORTNAME= airsaned
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.3.2-50
|
||||
DISTVERSIONSUFFIX= -gdeab313
|
||||
DISTVERSION= 0.3.2-54
|
||||
DISTVERSIONSUFFIX= -g53909a5
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= fbsd@opal.com
|
||||
@ -16,14 +16,17 @@ LIB_DEPENDS= libavahi-client.so:net/avahi-app \
|
||||
|
||||
USES= cmake compiler:c++11-lib jpeg localbase:ldflags
|
||||
USE_GITHUB= yes
|
||||
USE_RC_SUBR= ${PORTNAME}
|
||||
|
||||
GH_ACCOUNT= SimulPiscator
|
||||
GH_PROJECT= AirSane
|
||||
|
||||
USE_RC_SUBR= ${PORTNAME}
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|%%STAGEDIR%%|${STAGEDIR}|g' \
|
||||
${PATCH_WRKSRC}/CMakeLists.txt
|
||||
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \
|
||||
${PATCH_WRKSRC}/server/server.cpp
|
||||
${PATCH_WRKSRC}/server/mainserver.cpp
|
||||
|
||||
post-install:
|
||||
@${MV} ${STAGEDIR}${PREFIX}/etc/airsane/ignore.conf ${STAGEDIR}${PREFIX}/etc/airsane/ignore.conf.sample
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1633432825
|
||||
SHA256 (SimulPiscator-AirSane-v0.3.2-50-gdeab313_GH0.tar.gz) = a9df4ed9de8f59f07fe9d491bf9eb96c8168001ba0025b96bf97c39ac49e35e9
|
||||
SIZE (SimulPiscator-AirSane-v0.3.2-50-gdeab313_GH0.tar.gz) = 115706
|
||||
TIMESTAMP = 1641754683
|
||||
SHA256 (SimulPiscator-AirSane-v0.3.2-54-g53909a5_GH0.tar.gz) = 64b4b81bb65b0a69dead944a063b0bf4276d8772749b24c4c7fa87134c819e80
|
||||
SIZE (SimulPiscator-AirSane-v0.3.2-54-g53909a5_GH0.tar.gz) = 114019
|
||||
|
@ -1,19 +1,11 @@
|
||||
--- CMakeLists.txt.orig 2021-09-18 16:22:32 UTC
|
||||
--- CMakeLists.txt.orig 2021-02-01 18:41:51 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -20,6 +20,7 @@ endif()
|
||||
|
||||
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
||||
find_package(Threads REQUIRED)
|
||||
+include(GNUInstallDirs)
|
||||
|
||||
include_directories(.)
|
||||
if(APPLE)
|
||||
@@ -66,6 +67,13 @@ add_executable(${PROJECT_NAME}
|
||||
@@ -67,6 +67,13 @@ add_executable(${PROJECT_NAME}
|
||||
zeroconf/hotplugnotifier.cpp
|
||||
${ZEROCONF_FILES}
|
||||
)
|
||||
+
|
||||
+if(CMAKE_SYSTEM_NAME STREQUAL FreeBSD)
|
||||
+if(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
||||
+ set(USB_LIBRARY usb)
|
||||
+else()
|
||||
+ set(USB_LIBRARY usb-1.0)
|
||||
@ -22,7 +14,7 @@
|
||||
target_link_libraries(
|
||||
${PROJECT_NAME}
|
||||
Threads::Threads
|
||||
@@ -73,7 +81,7 @@ target_link_libraries(
|
||||
@@ -74,7 +79,7 @@ target_link_libraries(
|
||||
jpeg
|
||||
png
|
||||
${ZEROCONF_LIBS}
|
||||
@ -31,41 +23,35 @@
|
||||
)
|
||||
|
||||
if(APPLE)
|
||||
@@ -105,8 +113,10 @@ install(CODE "
|
||||
@@ -102,8 +107,31 @@ install(CODE "
|
||||
endif()
|
||||
")
|
||||
|
||||
+elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
||||
|
||||
+set(STAGEDIR "%%STAGEDIR%%")
|
||||
+
|
||||
+install(TARGETS ${PROJECT_NAME}
|
||||
+ RUNTIME DESTINATION sbin
|
||||
+)
|
||||
+
|
||||
+install(CODE "
|
||||
+ if(NOT EXISTS ${STAGEDIR}/usr/local/etc/airsane/ignore.conf)
|
||||
+ file(INSTALL ${CMAKE_SOURCE_DIR}/etc/ignore.conf DESTINATION /usr/local/etc/airsane)
|
||||
+ endif()
|
||||
+")
|
||||
+install(CODE "
|
||||
+ if(NOT EXISTS ${STAGEDIR}/usr/local/etc/airsane/options.conf)
|
||||
+ file(INSTALL ${CMAKE_SOURCE_DIR}/etc/options.conf DESTINATION /usr/local/etc/airsane)
|
||||
+ endif()
|
||||
+")
|
||||
+install(CODE "
|
||||
+ if(NOT EXISTS ${STAGEDIR}/usr/local/etc/airsane/Gnome-scanner.png)
|
||||
+ file(INSTALL ${CMAKE_SOURCE_DIR}/etc/Gnome-scanner.png DESTINATION /usr/local/etc/airsane)
|
||||
+ endif()
|
||||
+")
|
||||
+
|
||||
else()
|
||||
|
||||
install(TARGETS ${PROJECT_NAME}
|
||||
- RUNTIME DESTINATION bin
|
||||
+ RUNTIME DESTINATION ${BINDIR}
|
||||
)
|
||||
+
|
||||
+if(CMAKE_SYSTEM_NAME STREQUAL Linux)
|
||||
install(FILES systemd/airsaned.service
|
||||
DESTINATION /lib/systemd/system
|
||||
)
|
||||
@@ -114,21 +124,9 @@ install(FILES systemd/airsaned.default
|
||||
DESTINATION /etc/default
|
||||
RENAME airsane
|
||||
)
|
||||
+endif()
|
||||
|
||||
-install(CODE "
|
||||
- if(NOT EXISTS /etc/airsane/ignore.conf)
|
||||
- file(INSTALL ${CMAKE_SOURCE_DIR}/etc/ignore.conf DESTINATION /etc/airsane)
|
||||
- endif()
|
||||
-")
|
||||
-install(CODE "
|
||||
- if(NOT EXISTS /etc/airsane/options.conf)
|
||||
- file(INSTALL ${CMAKE_SOURCE_DIR}/etc/options.conf DESTINATION /etc/airsane)
|
||||
- endif()
|
||||
-")
|
||||
-install(CODE "
|
||||
- if(NOT EXISTS /etc/airsane/Gnome-scanner.png)
|
||||
- file(INSTALL ${CMAKE_SOURCE_DIR}/etc/Gnome-scanner.png DESTINATION /etc/airsane)
|
||||
- endif()
|
||||
-")
|
||||
-
|
||||
+install(FILES etc/ignore.conf etc/options.conf etc/Gnome-scanner.png
|
||||
+ DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/airsane
|
||||
+)
|
||||
endif()
|
||||
RUNTIME DESTINATION bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
--- imageformats/pngencoder.cpp.orig 2021-10-05 12:35:03 UTC
|
||||
--- imageformats/pngencoder.cpp.orig 2021-02-01 18:41:51 UTC
|
||||
+++ imageformats/pngencoder.cpp
|
||||
@@ -17,11 +17,17 @@ along with this program. If not, see <http://www.gnu.
|
||||
*/
|
||||
@ -7,7 +7,7 @@
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <png.h>
|
||||
+#else
|
||||
#include <libpng16/png.h>
|
||||
#include <libpng/png.h>
|
||||
+#endif
|
||||
#include <stdexcept>
|
||||
#include <vector>
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- server/server.cpp.orig 2021-10-05 17:07:11 UTC
|
||||
+++ server/server.cpp
|
||||
@@ -103,11 +103,11 @@ Server::Server(int argc, char** argv)
|
||||
--- server/mainserver.cpp.orig 2021-02-01 18:41:51 UTC
|
||||
+++ server/mainserver.cpp
|
||||
@@ -83,11 +83,11 @@ MainServer::MainServer(int argc, char** argv)
|
||||
"ignore SANE network scanners",
|
||||
localonly },
|
||||
{ "options-file",
|
||||
@ -13,4 +13,4 @@
|
||||
+ "%%PREFIX%%/etc/airsane/ignore.conf",
|
||||
"location of device ignore list",
|
||||
ignorelist },
|
||||
{ "debug", "false", "log debug information to stderr", debug },
|
||||
{ "random-uuids",
|
@ -1,6 +1,6 @@
|
||||
--- web/httpserver.cpp.orig 2021-10-05 12:35:03 UTC
|
||||
--- web/httpserver.cpp.orig 2021-02-01 18:41:51 UTC
|
||||
+++ web/httpserver.cpp
|
||||
@@ -25,6 +25,9 @@ along with this program. If not, see <http://www.gnu.
|
||||
@@ -26,6 +26,9 @@ along with this program. If not, see <http://www.gnu.
|
||||
#include <thread>
|
||||
|
||||
#include <arpa/inet.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
bin/airsaned
|
||||
sbin/airsaned
|
||||
etc/airsane/Gnome-scanner.png
|
||||
@sample etc/airsane/ignore.conf.sample
|
||||
@sample etc/airsane/options.conf.sample
|
||||
|
Loading…
Reference in New Issue
Block a user