Index: files/patch-JDK-1.6.diff
===================================================================
--- files/patch-JDK-1.6.diff	(révision 0)
+++ files/patch-JDK-1.6.diff	(révision 0)
@@ -0,0 +1,22 @@
+--- src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java.orig	2004-10-25 22:26:22.000000000 +0200
++++ src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java	2009-11-28 14:53:09.000000000 +0100
+@@ -111,5 +111,19 @@
+         throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
+     }
+ 
++    /**
++     * Always throws a SQLException. Not supported.
++     */
++    public boolean isWrapperFor(Class<?> iface) throws SQLException {
++        throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
++    }
++
++    /**
++     * Always throws a SQLException. Not supported.
++     */
++    public <T> T unwrap(Class<T> iface) throws SQLException {
++        throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
++    }
++
+ 
+ }
Index: Portfile
===================================================================
--- Portfile	(révision 52433)
+++ Portfile	(copie de travail)
@@ -14,7 +14,7 @@
 long_description	A version of the JSP Standard Tag Library (JSTL) adhering \
 					to the JSP JSTL 1.1 specification. Requires a JSP 2.0 \
 					compatible web container, such as Tomcat5.
-homepage			http://jakarta.apache.org/taglibs/doc/standard-doc/
+homepage			http://tomcat.apache.org/taglibs/standard/
 
 distname			jakarta-taglibs-standard-${version}-src
 master_sites		apache:jakarta/taglibs/standard/source/
@@ -61,7 +61,7 @@
 
 destroot {
 	# Ensure needed directories
-	xinstall -m 755 -d \
+	xinstall -d \
 		${destroot}${prefix}/share/java \
 		${destroot}${prefix}/share/doc \
 		${destroot}${prefix}/share/examples
@@ -83,3 +83,7 @@
 		${worksrcpath}/examples \
 		${destroot}${prefix}/share/examples/${name}	
 }
+
+platform darwin 10 {
+	patchfiles-append patch-JDK-1.6.diff
+}

