summaryrefslogblamecommitdiff
path: root/databases/linux-oracle-instantclient-basic/Makefile
blob: be7559c501df68e3b6d0e023e1e42db694b9be54 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                        
                                                    
                         



                                                                                          
                                                                                             

                              
                                        

                                                                                      
                                                       
                           
                                                     



                                                              
                           

                           

                                

                              





                                                 
 
                                                    
 

                                                                            
 
                                                      


                          

                                 
                                

                                    
                                

      


















                                                                                                      
                                                        
                                                        

                                                                          
       






                                                                                              
# New ports collection makefile for:	linux-oracle-instantclient-basic
# Date created:				03 June 2004
# Whom:					Alexander Novitsky
#
# $FreeBSD$
#

PORTNAME=		instantclient
PORTVERSION=		${ORACLEVERSION}.${DISTDATE}
PORTREVISION=		2
CATEGORIES=		databases
MASTER_SITES=		#http://www.oracle.com/technology/software/tech/oci/instantclient/
PKGNAMEPREFIX=		linux-oracle-
PKGNAMESUFFIX=		-basic
DISTNAME=		${PORTNAME}${PKGNAMESUFFIX}-${LINUXARCH}-${ORACLEVERSION}-${DISTDATE}
DIST_SUBDIR=		oracle

MAINTAINER=		nork@FreeBSD.org
COMMENT=		Oracle 10 InstantClient basics. Works with Oracle RDBMS 8.1.2+

ONLY_FOR_ARCHS=		i386	# amd64(not yet on own)
NO_BUILD=		yes
MD5_FILE=		${MASTERDIR}/distinfo.${ARCH}

RESTRICTED=		Packaging prohibited by Oracle license

USE_ZIP=		yes
USE_LINUX=		yes
USE_LINUX_PREFIX=	yes

ORACLEVERSION=		10.2.0.3

BINS_LIST=		genezi

LIBS_LIST=		libclntsh.so.10.1	\
			libnnz10.so		\
			libocci.so.10.1		\
			libociei.so		\
			libocijdbc10.so		\
			ojdbc14.jar

WRKSRC=			${WRKDIR}/instantclient_10_2

INSTBINSDIR=		${PREFIX}/usr/lib/oracle/${ORACLEVERSION}/client/bin
INSTLIBSDIR=		${PREFIX}/usr/lib/oracle/${ORACLEVERSION}/client/lib

PLIST_SUB=		ORACLEVERSION=${ORACLEVERSION}

.include <bsd.port.pre.mk>

.if		${ARCH} == "i386"
LINUXARCH=		linux32
DISTDATE=		20061115
.elif		${ARCH} == "amd64"
LINUXARCH=		linux-x86-64
DISTDATE=		20070103
.endif

.if !exists(${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX})
ECHO_MSG=		${PRINTF} %b

IGNORE+=		\n\n-=< MARKED AS IGNORED: >=-\n
IGNORE+=		\n
IGNORE+=		Due to Oracle license restrictions, you must fetch the source \n
IGNORE+=		distribution manually.  Please access  \n
IGNORE+=		http://www.oracle.com/technology/software/tech/oci/instantclient/index.html \n
IGNORE+=		with a web browser and follow the link for the \n
IGNORE+=		\"${DISTFILES}\".  \n
IGNORE+=		You will be required to register and log in, \n
IGNORE+=		but you can create an account on that page.  \n
IGNORE+=		After registration and accepting the Oracle License, \n
IGNORE+=		download the distribution file, \n ${DISTFILES}, \n
IGNORE+=		into ${DISTDIR}/${DIST_SUBDIR}/ \n
IGNORE+=		and then restart this installation\n\n
.endif

do-install:
			@${MKDIR} -m 0755 ${INSTBINSDIR}
			@${MKDIR} -m 0755 ${INSTLIBSDIR}
.for i in ${BINS_LIST}
			${INSTALL_DATA} ${WRKSRC}/${i} ${INSTBINSDIR}/${i}
.endfor
.for i in ${LIBS_LIST}
			${INSTALL_DATA} ${WRKSRC}/${i} ${INSTLIBSDIR}/${i}
.endfor
			${ECHO_CMD} "${INSTLIBSDIR:S,${PREFIX},,}" >> ${PREFIX}/etc/ld.so.conf
			${PREFIX}/sbin/ldconfig

.include <bsd.port.post.mk>