freebsd-ports/math/kash3/Makefile
Nicola Vitale 92a9f734a4 - Update to 2008.07.31
- Add an option (WITH_OPTLIB) to install a package for elliptic curves
2008-12-09 17:56:35 +00:00

72 lines
1.7 KiB
Makefile

# New ports collection makefile for: kash3
# Date created: 2006-02-26
# Whom: Nicola Vitale <nivit@email.it>
#
# $FreeBSD$
#
PORTNAME= kash3
PORTVERSION= 2008.07.31
CATEGORIES= math
MASTER_SITES= ftp://ftp.math.tu-berlin.de/pub/algebra/Kant/Kash_3/ \
http://nivi.interfree.it/distfiles/${PORTNAME}/
DISTFILES= ${PORTNAME:U}-${ELFTYPE}-i686-${PORTVERSION:S|.|-|g}.tar.bz2
MAINTAINER= nivit@FreeBSD.org
COMMENT= A computer algebra system for computing in algebraic number fields
RUN_DEPENDS= curl:${PORTSDIR}/ftp/curl
NO_CDROM= not for commercial distribution or use
NO_BUILD= yes
OPTIONS= OPTLIB "Install optional functions library" on
PLIST_SUB= OPTLIB=${OPTLIB}
USE_BZIP2= yes
USE_LINUX= yes
SUB_FILES= ${PORTNAME}
WRKSRC= ${WRKDIR}/${PORTNAME:U}-${ELFTYPE}-i686-${PORTVERSION:S|.|-|g}
FIND_DATA= -type f -mindepth 1 -exec ${INSTALL_DATA} {} ${DATADIR}/{} \;
FIND_DIRS= -type d -exec ${MKDIR} ${DATADIR}/{} \;
FIND_HERE= data gap lib
.if !defined(NOPORTDOCS)
FIND_HERE+= html pdf
.endif
LN_OPTS= -sf
ELFTYPE= Linux
.include <bsd.port.pre.mk>
.if defined(WITH_OPTLIB)
DISTFILES+= ${PORTNAME:U}-lib-archindep-${PORTVERSION:S|.|-|g}.tar.bz2
OPTLIB=
.else
OPTLIB= "@comment "
.endif
do-install:
${MKDIR} ${DATADIR};
.if defined(WITH_OPTLIB)
cd ${WRKDIR}/${PORTNAME:U}-lib-archindep-${PORTVERSION:S|.|-|g}; \
${COPYTREE_SHARE} . ${DATADIR}
.endif
cd ${WRKSRC}; \
${FIND} ${FIND_HERE} ${FIND_DIRS}; \
${FIND} ${FIND_HERE} ${FIND_DATA}; \
${BRANDELF} -t ${ELFTYPE} ${PORTNAME}; \
${INSTALL_PROGRAM} ${PORTNAME} ${DATADIR}/${PORTNAME};
${INSTALL_SCRIPT} ${WRKDIR}/${SUB_FILES} ${PREFIX}/bin/${PORTNAME}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}; \
${MV} ${DATADIR}/html ${DATADIR}/pdf ${DOCSDIR}
.endif
.include <bsd.port.post.mk>