Re: PLIST_FILES question

2007-01-03 Thread Beech Rintoul
On Tuesday 02 January 2007 23:09, Gabor Kovesdan wrote: Beech Rintoul schrieb: On Tuesday 02 January 2007 13:43, you wrote: Beech Rintoul schrieb: Thanks to everyone who responded. I somehow missed that handbook section, but I have it figured out now. What I needed to do is the

Re: PLIST_FILES question

2007-01-03 Thread Andrew Pantyukhin
On 1/3/07, Gabor Kovesdan [EMAIL PROTECTED] wrote: Beech Rintoul schrieb: Thanks to everyone who responded. I somehow missed that handbook section, but I have it figured out now. What I needed to do is the following: .if defined(WITH_MYSQL) USE_MYSQL=yes

Re: PLIST_FILES question

2007-01-03 Thread Gabor Kovesdan
Andrew Pantyukhin schrieb: On 1/3/07, Gabor Kovesdan [EMAIL PROTECTED] wrote: Beech Rintoul schrieb: Thanks to everyone who responded. I somehow missed that handbook section, but I have it figured out now. What I needed to do is the following: .if defined(WITH_MYSQL) USE_MYSQL=yes

PLIST_FILES question

2007-01-02 Thread Beech Rintoul
Can someone give me the proper syntax for PLIST_FILES in a port Makefile? The handbook isn't really clear on how to use it. TIA, Beech -- --- Beech Rintoul - Sys. Administrator - [EMAIL PROTECTED] /\ ASCII

Re: PLIST_FILES question

2007-01-02 Thread Wesley Shields
On Tue, Jan 02, 2007 at 11:17:04AM -0900, Beech Rintoul wrote: Can someone give me the proper syntax for PLIST_FILES in a port Makefile? The handbook isn't really clear on how to use it. PLIST_FILES is useful if you only have a handful of files to list in the plist. It saves an inode (see the

Re: PLIST_FILES question

2007-01-02 Thread Beech Rintoul
Thanks to everyone who responded. I somehow missed that handbook section, but I have it figured out now. What I needed to do is the following: .if defined(WITH_MYSQL) USE_MYSQL= yes MODULES:=${MODULES}:mod_sql:mod_sql_mysql INCLUDEDIRS:=${INCLUDEDIRS}:${LOCALBASE}/include

Re: PLIST_FILES question

2007-01-02 Thread Gabor Kovesdan
Beech Rintoul schrieb: Thanks to everyone who responded. I somehow missed that handbook section, but I have it figured out now. What I needed to do is the following: .if defined(WITH_MYSQL) USE_MYSQL= yes MODULES:=${MODULES}:mod_sql:mod_sql_mysql