Re: FreeBSD Port Question

2006-12-06 Thread Julian D. Seifert
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/slow.html#SLOW-WORK

maybe this will help you in finding the distribution.

ciao,

 Julian D. `alamar` Seifert

-- 
This is Unix and Netware country, on a quiet night you can hear NT
Reboot.

gpg fingerprint: 
435D DDDA 251B 9D70 2F72 78E0 AA5F 11F4 A4ED 451E


pgpCFP7inZ5UQ.pgp
Description: PGP signature


FreeBSD Port Question

2006-12-05 Thread VeeJay

Hi guys

How can one find the location of the URL/FTP site where FreeBSD 6.1 fetches
the Source of a Distribution for example, mysql50???

I am trying to compile and install mysql50 at my freebsd61 web server from
source. I can install it from the ports easily and have done twice.
(location: /usr/ports/databases/mysql50-server/)

But I want to change the location of installation for chroot reason and
wanna configure with some paraments before compilation too. So, I have tried
A LOT to find the source distribution of mysql-50 for freebsd6x from
dev.mysql.com website or other mirros but with NO luck.
They only have the binary distribution of mysql50 for FreeBSD 6x.

My question is that how can I find the location of the site/ftp where from
FreeBSD61 fetches? I have tried to go through the Makefile. But since I am
a novice, I cannot understand a bit what it says?

a snipt from Makefile:

PORTNAME?=  mysql
PORTVERSION=5.0.2
PORTREVISION?=  0
CATEGORIES= databases
MASTER_SITES=   ${MASTER_SITE_MYSQL}
MASTER_SITE_SUBDIR= MySQL-5.0
PKGNAMESUFFIX?= -server
DISTNAME=   ${PORTNAME}-${PORTVERSION}-alpha

MAINTAINER= [EMAIL PROTECTED]
COMMENT?=   Multithreaded SQL database (server)

WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-alpha
SLAVEDIRS=  databases/mysql50-client
PKGINSTALL?=${WRKDIR}/pkg-install
DB_DIR?=/var/db/mysql
USE_LIBTOOL_VER=15
USE_REINPLACE=  yes
USE_RC_SUBR=yes

--
Thanks!

BR / vj
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Port Question

2006-12-05 Thread Julian D. Seifert

On Tue, Dec 05, 2006 at 10:38:30AM +0100, VeeJay wrote:
 a snipt from Makefile:
 
 PORTNAME?=  mysql
 PORTVERSION=5.0.2
 PORTREVISION?=  0
 CATEGORIES= databases
 MASTER_SITES=   ${MASTER_SITE_MYSQL}

# grep -nie master.*site.*mysql /usr/ports/Mk/*
/usr/ports/Mk/bsd.sites.mk:661:.if !defined(IGNORE_MASTER_SITE_MYSQL)
/usr/ports/Mk/bsd.sites.mk:662:MASTER_SITE_MYSQL+=  \

After looking into the file /usr/ports/Mk/bsd.sites.mk we see for example:
ftp://ftp.easynet.be/mysql/Downloads/%SUBDIR%/ \

so what about subdir?
 /usr/ports/databases/mysql50-server]# grep -ie subdir= Make
MASTER_SITE_SUBDIR= MySQL-5.0

so we have:
ftp://ftp.easynet.be/mysql/Downloads/MySQL-5.0/

tada :)

cya,

 Julian D. `alamar` Seifert

-- 
If the truth is in your favor no one will believe you.
 
gpg fingerprint: 
435D DDDA 251B 9D70 2F72 78E0 AA5F 11F4 A4ED 451E


pgp5JrHcJhFS1.pgp
Description: PGP signature


Re: FreeBSD Port Question

2006-12-05 Thread VeeJay

Thanks Julian

But it is still compiled distribution 
mysql-standard-5.0.27-freebsd6.0-i386.tar.gz  I have tried to download it
and tar it

Like there is a Source distribution is also availible for Windows plateform:
mysql-5.0.24a-win-src.tar.gz

I wonder if I can get Source Distribution for FreeBSD 6.x  :o(

Brgds

VJ

On 12/5/06, Julian D. Seifert [EMAIL PROTECTED] wrote:



On Tue, Dec 05, 2006 at 10:38:30AM +0100, VeeJay wrote:
 a snipt from Makefile:

 PORTNAME?=  mysql
 PORTVERSION=5.0.2
 PORTREVISION?=  0
 CATEGORIES= databases
 MASTER_SITES=   ${MASTER_SITE_MYSQL}

# grep -nie master.*site.*mysql /usr/ports/Mk/*
/usr/ports/Mk/bsd.sites.mk:661:.if !defined(IGNORE_MASTER_SITE_MYSQL)
/usr/ports/Mk/bsd.sites.mk:662:MASTER_SITE_MYSQL+=  \

After looking into the file /usr/ports/Mk/bsd.sites.mk we see for example:
ftp://ftp.easynet.be/mysql/Downloads/%SUBDIR%/ \

so what about subdir?
/usr/ports/databases/mysql50-server]# grep -ie subdir= Make
MASTER_SITE_SUBDIR= MySQL-5.0

so we have:
ftp://ftp.easynet.be/mysql/Downloads/MySQL-5.0/

tada :)

cya,

Julian D. `alamar` Seifert

--
If the truth is in your favor no one will believe you.

gpg fingerprint:
435D DDDA 251B 9D70 2F72 78E0 AA5F 11F4 A4ED 451E






--
Thanks!

BR / vj
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]