summaryrefslogtreecommitdiff
path: root/converters/rss2html
diff options
context:
space:
mode:
authorgrant <grant>2005-07-29 04:40:47 +0000
committergrant <grant>2005-07-29 04:40:47 +0000
commitc720a6d90bb14761ad7398e527d6f545007bad43 (patch)
tree3fe83546ccf534eb3d28722082238ef7e8ff7110 /converters/rss2html
parentef75b02b4409b4e0b8f2811e5da6539fc37df723 (diff)
downloadpkgsrc-c720a6d90bb14761ad7398e527d6f545007bad43.tar.gz
honour LDFLAGS and LIBS.
Diffstat (limited to 'converters/rss2html')
-rw-r--r--converters/rss2html/Makefile5
-rw-r--r--converters/rss2html/distinfo3
-rw-r--r--converters/rss2html/patches/patch-aa13
3 files changed, 19 insertions, 2 deletions
diff --git a/converters/rss2html/Makefile b/converters/rss2html/Makefile
index 176f4049fa0..9e41ce33530 100644
--- a/converters/rss2html/Makefile
+++ b/converters/rss2html/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2005/05/28 05:57:25 snj Exp $
+# $NetBSD: Makefile,v 1.8 2005/07/29 04:40:47 grant Exp $
#
DISTNAME= rss2html-0.7.2
@@ -15,4 +15,7 @@ USE_TOOLS+= gmake
INSTALLATION_DIRS+= bin
+LIBS.SunOS+= -lnsl -lsocket
+MAKE_ENV+= LIBS=${LIBS:Q}
+
.include "../../mk/bsd.pkg.mk"
diff --git a/converters/rss2html/distinfo b/converters/rss2html/distinfo
index cd98fd4dfb2..947f3352f9f 100644
--- a/converters/rss2html/distinfo
+++ b/converters/rss2html/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.7 2005/05/28 05:57:25 snj Exp $
+$NetBSD: distinfo,v 1.8 2005/07/29 04:40:47 grant Exp $
SHA1 (rss2html-0.7.2.tar.gz) = 5acce10e8a1bcc290f05572b50a8085128e796d5
RMD160 (rss2html-0.7.2.tar.gz) = fe5a2343fcc613c65731580061eda621a70486b1
Size (rss2html-0.7.2.tar.gz) = 6242 bytes
+SHA1 (patch-aa) = 54b4460fe9019064870d363ebc4e57eb06589eb3
diff --git a/converters/rss2html/patches/patch-aa b/converters/rss2html/patches/patch-aa
new file mode 100644
index 00000000000..ad3ba86f400
--- /dev/null
+++ b/converters/rss2html/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.3 2005/07/29 04:40:47 grant Exp $
+
+--- src/Makefile.orig 2004-11-28 07:57:28.000000000 +1100
++++ src/Makefile
+@@ -5,7 +5,7 @@ CFLAGS+=-DVERSION=\"${VERSION}\"
+ OBJ=main.o rsslist.o config.o rssshow.o download.o
+
+ all: ${OBJ}
+- $(CC) ${CFLAGS} ${OBJ} -o ${BIN}
++ $(CC) ${CFLAGS} ${OBJ} ${LDFLAGS} ${LIBS} -o ${BIN}
+
+ clean:
+ rm -f ${BIN} ${OBJ}