mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
4942ce5a7d
- Add significantly better support in bsd.python.mk for working with Python Eggs and the easy_install system Tested by: pointyhat runs Approved by: pav (portmgr) Most work by: perky Thanks to: pav
34 lines
668 B
Makefile
34 lines
668 B
Makefile
# New ports collection makefile for: scons
|
|
# Date created: 16 December 2001
|
|
# Whom: Peter Haight <peterh@sapros.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= scons
|
|
PORTVERSION= 0.97
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= perky@FreeBSD.org
|
|
COMMENT= A build tool alternative to make
|
|
|
|
MAN1= scons.1 sconsign.1 scons-time.1
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_EGGINFODIR= ${PREFIX}/lib/scons-${PORTVERSION}
|
|
|
|
PLIST_SUB= SCONS_VER=${PORTVERSION}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} < 250
|
|
PLIST_SUB+= NO_EGG="@comment "
|
|
.else
|
|
PLIST_SUB+= NO_EGG=""
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|