From owner-freebsd-java@FreeBSD.ORG Sat Sep 22 13:11:49 2012 Return-Path: Delivered-To: java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05FD2106566C for ; Sat, 22 Sep 2012 13:11:49 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id CAC098FC16 for ; Sat, 22 Sep 2012 13:11:48 +0000 (UTC) Received: by pbbrp8 with SMTP id rp8so253820pbb.13 for ; Sat, 22 Sep 2012 06:11:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:from:date:message-id:subject:to:content-type; bh=CFHmj20ExBCqXaPE75B5mntq4Af7fqZk3XRiCHy6gd8=; b=WYR2qeY4XaBpGHwigdrrHOs51k+EM6jmtVGHU6Fd6zL3qArussjVhdkHS53KMqxkBX hks/DUbV4rDF7fDGR77/jQbszuIv63yOl1JpRmyrvFxg0kCxt9ovNr+xwdNSRtpcxkKb y7+JBI8PH+Tle0KlDboWhXx45JZpc6UXeNA/I= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type :x-gm-message-state; bh=CFHmj20ExBCqXaPE75B5mntq4Af7fqZk3XRiCHy6gd8=; b=ShsJsZ9E7/B4fJmvpYOm+afTxUAOhqjy71v6LbQU8B1oZt+xQASPn9h+bVK2FBextf It1qpdWQC8ARkivKf5i7JBnjut3WGg7ERzWKu0oQwv3IeZVwVupGxmblNgW+6BJgpn+T 2Ifjb/a8txmT9w34nEe9avrqi1a6JHKPqGlCF02sEeHmi15MfJtSO+GeljN0FT5rNZY9 v84xF5KpQ5EHKO+qFEgE7yOxfP9bmrHHkl/s/lAhV8ZsAIyidyaPBrNyKaN5rY2L+qNB aJSnTIE6CkZie8axwXmbr94E+XB/2EgpPQvE14i83QsVd8HKJSh611TjEAFk9fkXFg0F CtLg== Received: by 10.68.138.133 with SMTP id qq5mr23047653pbb.86.1348319508167; Sat, 22 Sep 2012 06:11:48 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.127.20 with HTTP; Sat, 22 Sep 2012 06:11:17 -0700 (PDT) From: Eitan Adler Date: Sat, 22 Sep 2012 09:11:17 -0400 Message-ID: To: java@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQlgQL/0tD+YlMxSw8UwwfeoNQidM6XERPofxmm7zbucpXdBaEcXzRZjoPEhpVCRDrCBZoPJ Cc: Subject: removing linuxpluginwrapper support from java/jai-imageio X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Sep 2012 13:11:49 -0000 Hi, I just removed linuxpluginwrapper from the ports tree. I'd like permission to commit this diff: Index: java/jai-imageio/Makefile =================================================================== --- Makefile (revision 304534) +++ Makefile (working copy) @@ -35,11 +35,6 @@ PKGMESSAGE= ${WRKDIR}/pkg-message IGNORE= you must manually fetch the "Linux Install" distribution (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again .endif -.if ${JAVA_PORT_OS} == "native" -WITH_PLUGINWRAPPER= yes -RUN_DEPENDS+= ${LOCALBASE}/lib/pluginwrapper/jai.so:${PORTSDIR}/www/linuxpluginwrapper -.endif - .if defined(NOINSTALL_IN_JRE) PLIST_SUB+= INSTALL_IN_JRE="@comment " .else @@ -51,14 +46,6 @@ pre-install: SUB_FILES= pkg-message-jre SUB_LIST= TARGET_DIR=${TARGET_DIR} .endif -.if defined(WITH_PLUGINWRAPPER) -SUB_FILES= pkg-message-libmap -.if defined(NOINSTALL_IN_JRE) -SUB_LIST= LIBDIR=${TARGET_DIR}/lib -.else -SUB_LIST= LIBDIR=${JAVA_HOME}/jre/lib/i386 -.endif -.endif do-install: @${ECHO_MSG} -n ">> Creating destination directory..." @@ -83,7 +70,7 @@ do-install: @${ECHO_MSG} " [DONE]" post-install: -.if defined(NOINSTALL_IN_JRE) || defined(WITH_PLUGINWRAPPER) +.if defined(NOINSTALL_IN_JRE) @${CAT} ${PKGMESSAGE} .endif -- Eitan Adler