freebsd-ports/databases/linux-oracle-instantclient-sqlplus/Makefile
Norikatsu Shigemura 292b04093b o Remove ia64 support and Suspend amd64 support. [1]
o Fix WRKSRC. [2]

Pointed out by:	netchild and kris [1]
Submitted by:	John Prather <john.c.prather@gmail.com> [2]
2006-01-21 16:49:19 +00:00

83 lines
2.5 KiB
Makefile

# New ports collection makefile for: linux-oracle-instantclient-sqlplus
# Date created: 2005-04-26
# Whom: nork@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= instantclient
PORTVERSION= 10.2.0.1.${DISTDATE}
CATEGORIES= databases
MASTER_SITES= #http://www.oracle.com/technology/software/tech/oci/instantclient/
PKGNAMEPREFIX= linux-oracle-
PKGNAMESUFFIX= -sqlplus
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${LINUXARCH}-${PORTVERSION:S/.${DISTDATE}/-${DISTDATE}/}
DIST_SUBDIR= oracle
MAINTAINER= nork@FreeBSD.org
COMMENT= Oracle 10 InstantClient SQLPlus. Works with Oracle RDBMS 8.1.2+
RUN_DEPENDS= ${LINUXBASE}/usr/lib/oracle/${PORTVERSION}/client/lib/libocci.so.10.1:${.CURDIR}/../linux-oracle-instantclient-basic
ONLY_FOR_ARCHS= i386 # amd64(not yet on own)
NO_BUILD= yes
NO_FILTER_SHLIBS= yes
MD5_FILE= ${MASTERDIR}/distinfo.${ARCH}
RESTRICTED= Packaging prohibited by Oracle license
USE_ZIP= yes
USE_LINUX_PREFIX= yes
BINS_LIST= sqlplus
LIBS_LIST= glogin.sql \
libsqlplus.so \
libsqlplusic.so
WRKSRC= ${WRKDIR}/instantclient_10_2
INSTLIBSDIR= ${PREFIX}/usr/lib/oracle/${PORTVERSION}/client/lib
INSTBINSDIR= ${PREFIX}/usr/lib/oracle/${PORTVERSION}/client/bin
PLIST_SUB= PORTVERSION=${PORTVERSION}
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
LINUXARCH= linux32
DISTDATE= 20050713
.elif ${ARCH} == "amd64"
LINUXARCH= linux-x86-64
DISTDATE= 20051025
.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}
${LN} -s ../lib/oracle/${PORTVERSION}/client/bin/sqlplus ${PREFIX}/usr/bin/sqlplus
.for i in ${BINS_LIST}
${INSTALL_SCRIPT} ${WRKSRC}/${i} ${INSTBINSDIR}/${i}
.endfor
.for i in ${LIBS_LIST}
${INSTALL_DATA} ${WRKSRC}/${i} ${INSTLIBSDIR}/${i}
.endfor
.include <bsd.port.post.mk>