diff options
author | ryoon <ryoon> | 2012-12-20 10:02:41 +0000 |
---|---|---|
committer | ryoon <ryoon> | 2012-12-20 10:02:41 +0000 |
commit | 85138d0f45078fc15349e45e3728f8c9508bd791 (patch) | |
tree | 086eb674c8b846124d60c3bbf63e80ddadfb01a2 /net/podcastdl | |
parent | 4f51cb25f1a68519f4a4a4cfec0d04fbe29dbae1 (diff) | |
download | pkgsrc-85138d0f45078fc15349e45e3728f8c9508bd791.tar.gz |
Fix build on Solaris.
curl is also required in link stage.
Diffstat (limited to 'net/podcastdl')
-rw-r--r-- | net/podcastdl/distinfo | 3 | ||||
-rw-r--r-- | net/podcastdl/patches/patch-src_CMakeLists.txt | 15 |
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) |