Date: Sun, 19 Mar 2006 22:09:49 GMT From: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/94708: [MAINTAINER] games/pysycache-lang: selected options by default Message-ID: <200603192209.k2JM9nrl024217@www.freebsd.org> Resent-Message-ID: <200603192210.k2JMA9fj027437@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 94708 >Category: ports >Synopsis: [MAINTAINER] games/pysycache-lang: selected options by default >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Mar 19 22:10:09 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Jose Alonso Cardenas Marquez >Release: FreeBSD 6.1-PRERELEASE i386 >Organization: BSDPeru (http://www.bsd.org.pe) >Environment: System: FreeBSD HellFire.BSD.org.pe 6.1-PRERELEASE FreeBSD 6.1-PRERELEASE #0: Wed Mar 8 13:14:43 PET >Description: - Fix build problem (reported by Kris), because the pysycache port haven't an option by default. I selected all options, this help to build complete package. >How-To-Repeat: >Fix: --- pysycache-lang-2.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/pysycache-lang/Makefile /usr/ports/games/pysycache-lang-new/Makefile --- /usr/ports/games/pysycache-lang/Makefile Wed Mar 15 05:46:02 2006 +++ /usr/ports/games/pysycache-lang-new/Makefile Sun Mar 19 16:48:52 2006 @@ -24,15 +24,15 @@ WRKSRC= ${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME} DATADIR= ${PREFIX}/share/${DIST_SUBDIR} -OPTIONS= FRENCH "French language support" off \ - GERMAN "German language support" off \ - ITALIAN "Italian language support" off \ - PORTUGUESE "Portuguese language support" off \ - SPANISH "Spanish language support" off +OPTIONS= FRENCH "French language support" on \ + GERMAN "German language support" on \ + ITALIAN "Italian language support" on \ + PORTUGUESE "Portuguese language support" on \ + SPANISH "Spanish language support" on .include <bsd.port.pre.mk> -.if defined(WITH_FRENCH) +.if !defined(WITHOUT_FRENCH) DISTFILES+= pysycache-lang-fr-${PORTVERSION}.zip PLIST_SUB+= FRENCH="" FLAG_LANG= true @@ -41,7 +41,7 @@ PLIST_SUB+= FRENCH="@comment " .endif -.if defined(WITH_GERMAN) +.if !defined(WITHOUT_GERMAN) DISTFILES+= pysycache-lang-de-${PORTVERSION}.zip PLIST_SUB+= GERMAN="" FLAG_LANG= true @@ -50,7 +50,7 @@ PLIST_SUB+= GERMAN="@comment " .endif -.if defined(WITH_ITALIAN) +.if !defined(WITHOUT_ITALIAN) DISTFILES+= pysycache-lang-it-${PORTVERSION}.zip PLIST_SUB+= ITALIAN="" FLAG_LANG= true @@ -59,7 +59,7 @@ PLIST_SUB+= ITALIAN="@comment " .endif -.if defined(WITH_PORTUGUESE) +.if !defined(WITHOUT_PORTUGUESE) DISTFILES+= pysycache-lang-pt-${PORTVERSION}.zip PLIST_SUB+= PORTUGUESE="" FLAG_LANG= true @@ -68,7 +68,7 @@ PLIST_SUB+= PORTUGUESE="@comment " .endif -.if defined(WITH_SPANISH) +.if !defined(WITHOUT_SPANISH) DISTFILES+= pysycache-lang-es-${PORTVERSION}.zip PLIST_SUB+= SPANISH="" FLAG_LANG= true --- pysycache-lang-2.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200603192209.k2JM9nrl024217>