diff options
author | rh <rh@pkgsrc.org> | 2007-05-25 23:37:10 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2007-05-25 23:37:10 +0000 |
commit | a08e5335c143e74464e03b208971c5dcb2f55407 (patch) | |
tree | 3ad146ca2c08bbb0640b234a3314526ac045855a | |
parent | caf13fda08b23581899e2572f3e5d50bc433d54d (diff) | |
download | pkgsrc-a08e5335c143e74464e03b208971c5dcb2f55407.tar.gz |
Make this compile on Solaris by using -Wl,-L instead of -L as pointed out
by kwennoir at hotbox dot ru.
Bump PKGREVISION.
-rw-r--r-- | mail/Pantomime/Makefile | 4 | ||||
-rw-r--r-- | mail/Pantomime/distinfo | 3 | ||||
-rw-r--r-- | mail/Pantomime/patches/patch-ab | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/mail/Pantomime/Makefile b/mail/Pantomime/Makefile index d81603b3532..99d4a06595a 100644 --- a/mail/Pantomime/Makefile +++ b/mail/Pantomime/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.19 2006/09/22 07:08:16 rillig Exp $ +# $NetBSD: Makefile,v 1.20 2007/05/25 23:37:10 rh Exp $ # DISTNAME= Pantomime-1.1.2 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= mail gnustep MASTER_SITES= http://debian.uni-essen.de/misc/GNUstep/Apps/GNUMail/ diff --git a/mail/Pantomime/distinfo b/mail/Pantomime/distinfo index 53b12e434e7..c8cf9319efd 100644 --- a/mail/Pantomime/distinfo +++ b/mail/Pantomime/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2006/01/20 03:24:10 joerg Exp $ +$NetBSD: distinfo,v 1.6 2007/05/25 23:37:11 rh Exp $ SHA1 (Pantomime-1.1.2.tar.gz) = 06755835a74ff3686eca35ba5169722f17cf968e RMD160 (Pantomime-1.1.2.tar.gz) = 2d6a3bf2c5e1cd146ba3f72ac69970ed6b5ee999 Size (Pantomime-1.1.2.tar.gz) = 394509 bytes SHA1 (patch-aa) = ef93a034eb706006ae9c7f0b6f393d8117656129 +SHA1 (patch-ab) = e93e2e507b22d9deaf91af147ec6552a707f70bb diff --git a/mail/Pantomime/patches/patch-ab b/mail/Pantomime/patches/patch-ab new file mode 100644 index 00000000000..b03f27f966f --- /dev/null +++ b/mail/Pantomime/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2007/05/25 23:37:11 rh Exp $ + +--- Source/GNUmakefile.orig 2003-08-13 00:17:39.000000000 +1000 ++++ Source/GNUmakefile +@@ -88,7 +88,7 @@ ADDITIONAL_OBJCFLAGS = -DHAVE_ICONV -Wal + + # Under Solaris, we link to libucb + ifeq ($(findstring solaris, $(GNUSTEP_TARGET_OS)), solaris) +-ADDITIONAL_LDFLAGS = -L/usr/ucblib -lucb ++ADDITIONAL_LDFLAGS = -Wl,-L/usr/ucblib -lucb + endif + + include $(GNUSTEP_MAKEFILES)/library.make |