FreeBSD ports you maintain which are out of date

2013-09-24 Thread portscout
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated,

Multiple Java versions

2013-09-24 Thread Andrea Venturoli
Hello. Sorry if this is a stupid question... I have: # pkg_info|grep jdk bootstrap-openjdk-r316538 Oracle's Java 6 virtual machine release under the GPL v2 openjdk-7.25.15 Java Development Kit 7 openjdk6-b27_7 Oracle's Java 6 virtual machine release under the GPL v2 Now, according

STAGE support and PYTHON_SITELIBDIR at pkg-plist

2013-09-24 Thread Boris Samorodov
Hi Baptiste and All, I try to convert comms/gammu to using STAGE and while make makeplist get those changes: - +lib/python2.7/site-packages/gammu/Data.py ... -%%PYTHON_SITELIBDIR%%/gammu/Data.py - If I apply the attached patch that part of pkg-plist does not change (modulo sorting). --

Stage support trouble

2013-09-24 Thread Olivier Duchateau
Hi, I've read wiki [1] and Mk/bsd.stage.mk, but I don't understand process. I tested on simple port (devel/xfce4-dev-tools). I removed NO_STAGE, and followed wiki. If I made make check-orphans (or makeplist) nothing appends. I must send SIGINT signal otherwise make is always running. So, is

Re: STAGE support and PYTHON_SITELIBDIR at pkg-plist

2013-09-24 Thread Baptiste Daroussin
On Tue, Sep 24, 2013 at 05:33:41PM +0400, Boris Samorodov wrote: Hi Baptiste and All, I try to convert comms/gammu to using STAGE and while make makeplist get those changes: - +lib/python2.7/site-packages/gammu/Data.py ... -%%PYTHON_SITELIBDIR%%/gammu/Data.py - This will bring

Re: STAGE support and PYTHON_SITELIBDIR at pkg-plist

2013-09-24 Thread Boris Samorodov
24.09.2013 19:27, Baptiste Daroussin пишет: On Tue, Sep 24, 2013 at 05:33:41PM +0400, Boris Samorodov wrote: Hi Baptiste and All, I try to convert comms/gammu to using STAGE and while make makeplist get those changes: - +lib/python2.7/site-packages/gammu/Data.py ...

Re: Stage support trouble

2013-09-24 Thread Andrea Venturoli
On 09/24/13 19:11, Olivier Duchateau wrote: So, is there good documentation somewhere ? [1] https://wiki.freebsd.org/ports/StageDir Sorry to step in, but is there some documentation for someone who doesn't even know what stage is all about? bye Thanks av.

Re: [HEADS UP] Improved python package support ahead

2013-09-24 Thread Marcus von Appen
On, Sat Sep 21, 2013, Marcus von Appen wrote: Two new port Makefile knobs are to be committed to the ports tree in a couple of days or few weeks. PYDISTUTILS_AUTOPLIST This knob will enable the creation of an automatic package list similar to the linux rpm ports and rubygems. It will work

Re: Stage support trouble

2013-09-24 Thread Baptiste Daroussin
On Tue, Sep 24, 2013 at 05:11:13PM +, Olivier Duchateau wrote: Hi, I've read wiki [1] and Mk/bsd.stage.mk, but I don't understand process. I tested on simple port (devel/xfce4-dev-tools). I removed NO_STAGE, and followed wiki. If I made make check-orphans (or makeplist) nothing

Options: ${opt}_CPPFLAGS?

2013-09-24 Thread Christian Weisgerber
The Porter's Handbook, 5.12.4. Options Helpers, says: | For any of the following variables: | | CFLAGS | CXXFLAGS | LDLAGS | CONFIGURE_ENV | MAKE_ENV | USES | DISTFILES | | If X_ABOVEVARIABLE is defined then its value will be appended to | ABOVEVARIABLE depending on

Re: Options: ${opt}_CPPFLAGS?

2013-09-24 Thread Baptiste Daroussin
On Tue, Sep 24, 2013 at 05:33:54PM +, Christian Weisgerber wrote: The Porter's Handbook, 5.12.4. Options Helpers, says: | For any of the following variables: | | CFLAGS | CXXFLAGS | LDLAGS | CONFIGURE_ENV | MAKE_ENV | USES | DISTFILES | | If

Re: Help with port for simple-scan

2013-09-24 Thread Boris Samorodov
24.09.2013 22:13, Chess Griffin пишет: CONFIGURE_ENV+= CFLAGS+=-I${LOCALBASE}/include ${CFLAGS} \ Seems that the closing is missing. A note about: RUN_DEPENDS= ${BUILD_DEPENDS} As per the FreeBSD Porter's Handbook (5.8.2. RUN_DEPENDS) it should be RUN_DEPENDS:=${BUILD_DEPENDS} --

Re: Multiple Java versions

2013-09-24 Thread Jonathan Chen
On 24 September 2013 22:36, Andrea Venturoli m...@netfence.it wrote: [...] Now, according to JAVAVMS(5), By default, javavm will select the most ``native'' and up to date version. However: % java -version openjdk version 1.6.0_32 OpenJDK Runtime Environment (build 1.6.0_32-b27) OpenJDK

Re: Options: ${opt}_CPPFLAGS?

2013-09-24 Thread Christian Weisgerber
Baptiste Daroussin: | If X_ABOVEVARIABLE is defined then its value will be appended to | ABOVEVARIABLE depending on the status of the option X ... which agrees with bsd.options.mk. But shouldn't this also include CPPFLAGS? Good idea, patch welcome :) Index: bsd.options.mk