summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2010-09-05 22:50:26 +0000
committerMichael Weber <xmw@gentoo.org>2010-09-05 22:50:26 +0000
commitf286590441e401d42d475e7ef51600b58b0ae741 (patch)
tree399484416e5579f983b25ce76026e9d6e3ba3f39 /net-mail/fdm/files
parentVersion bump KDE SC 4.5.1 (diff)
downloadgentoo-2-f286590441e401d42d475e7ef51600b58b0ae741.tar.gz
gentoo-2-f286590441e401d42d475e7ef51600b58b0ae741.tar.bz2
gentoo-2-f286590441e401d42d475e7ef51600b58b0ae741.zip
Initial import, fixes bug #163496,
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/fdm/files')
-rw-r--r--net-mail/fdm/files/fdm-1.5-GNUmakefile.patch11
-rw-r--r--net-mail/fdm/files/fdm-1.6-GNUmakefile.patch29
2 files changed, 40 insertions, 0 deletions
diff --git a/net-mail/fdm/files/fdm-1.5-GNUmakefile.patch b/net-mail/fdm/files/fdm-1.5-GNUmakefile.patch
new file mode 100644
index 000000000000..b607dcf9184c
--- /dev/null
+++ b/net-mail/fdm/files/fdm-1.5-GNUmakefile.patch
@@ -0,0 +1,11 @@
+--- /tmp/GNUmakefile 2010-09-06 00:39:07.912999999 +0200
++++ /var/tmp/portage/net-mail/fdm-1.5/work/fdm-1.5/GNUmakefile 2010-09-06 00:39:16.896999998 +0200
+@@ -89,7 +89,7 @@
+ all: fdm
+
+ $(PROG): $(OBJS)
+- $(CC) $(LDFLAGS) $(LIBS) -o $@ $+
++ $(CC) $(LDFLAGS) -o $@ $+ $(LIBS)
+
+ depend: $(SRCS)
+ $(CC) $(CPPFLAGS) -MM $(SRCS) > .depend
diff --git a/net-mail/fdm/files/fdm-1.6-GNUmakefile.patch b/net-mail/fdm/files/fdm-1.6-GNUmakefile.patch
new file mode 100644
index 000000000000..bbb51d056de4
--- /dev/null
+++ b/net-mail/fdm/files/fdm-1.6-GNUmakefile.patch
@@ -0,0 +1,29 @@
+--- /tmp/GNUmakefile 2010-09-06 00:35:53.502999999 +0200
++++ /var/tmp/portage/net-mail/fdm-1.6/work/fdm-1.6/GNUmakefile 2010-09-06 00:36:01.059000000 +0200
+@@ -16,7 +16,7 @@
+ CC= gcc
+
+ INCDIRS= -I$(PREFIX)/include
+-LDFLAGS= -L$(PREFIX)/lib
++LDFLAGS+= -L$(PREFIX)/lib
+
+ ifeq ($(shell uname),SunOS)
+ YACC= yacc
+@@ -89,7 +89,7 @@
+
+ ifdef COURIER
+ CFLAGS+= -DLOOKUP_COURIER
+-LIBS+= -lcourierauth
++LIBS+= -L/usr/lib64/courier-authlib -lcourierauth
+ endif
+
+ ifdef PCRE
+@@ -104,7 +104,7 @@
+ all: fdm
+
+ $(PROG): $(OBJS)
+- $(CC) $(LDFLAGS) $(LIBS) -o $@ $+
++ $(CC) $(LDFLAGS) -o $@ $+ $(LIBS)
+
+ depend: $(SRCS)
+ $(CC) $(CPPFLAGS) -MM $(SRCS) > .depend