summaryrefslogtreecommitdiff
path: root/net/podcastdl
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2012-12-20 10:02:41 +0000
committerryoon <ryoon@pkgsrc.org>2012-12-20 10:02:41 +0000
commitc825343734d346d6177e403a52d19b8f25cac97f (patch)
tree086eb674c8b846124d60c3bbf63e80ddadfb01a2 /net/podcastdl
parentfd53e887eaa63ca099c757599626015eed7f69a0 (diff)
downloadpkgsrc-c825343734d346d6177e403a52d19b8f25cac97f.tar.gz
Fix build on Solaris.
curl is also required in link stage.
Diffstat (limited to 'net/podcastdl')
-rw-r--r--net/podcastdl/distinfo3
-rw-r--r--net/podcastdl/patches/patch-src_CMakeLists.txt15
2 files changed, 17 insertions, 1 deletions
diff --git a/net/podcastdl/distinfo b/net/podcastdl/distinfo
index 277bc9600ee..8f7b74486a4 100644
--- a/net/podcastdl/distinfo
+++ b/net/podcastdl/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1 2012/12/08 17:09:37 ryoon Exp $
+$NetBSD: distinfo,v 1.2 2012/12/20 10:02:41 ryoon Exp $
SHA1 (podcastdl-0.3.0.tgz) = 09cc6ac495943e5dc3e717d712ad8020b8a2e12b
RMD160 (podcastdl-0.3.0.tgz) = 912862019ac47c1e20699a1a92b5a5862019f6e1
Size (podcastdl-0.3.0.tgz) = 5482 bytes
+SHA1 (patch-src_CMakeLists.txt) = b0faf7b4311dac18165b3de1ee2f6836a8b6c0e3
diff --git a/net/podcastdl/patches/patch-src_CMakeLists.txt b/net/podcastdl/patches/patch-src_CMakeLists.txt
new file mode 100644
index 00000000000..2af233cdfa7
--- /dev/null
+++ b/net/podcastdl/patches/patch-src_CMakeLists.txt
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_CMakeLists.txt,v 1.1 2012/12/20 10:02:41 ryoon Exp $
+
+* Fix build on Solaris
+
+--- src/CMakeLists.txt.orig 2012-08-14 12:05:09.000000000 +0000
++++ src/CMakeLists.txt
+@@ -4,7 +4,7 @@ add_definitions( -DPODCASTDL_VERSION_STR
+
+
+ add_executable(podcastdl podcastdl.c podcast.c util.c)
+-target_link_libraries(podcastdl mrss)
++target_link_libraries(podcastdl mrss curl)
+
+
+ install(TARGETS podcastdl DESTINATION bin)