2000-08-02 13:30:29 +00:00
|
|
|
# Ports collection Makefile for: veepee
|
|
|
|
# Date created: 2 August 2000
|
|
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= veepee
|
2000-09-15 07:45:41 +00:00
|
|
|
PORTVERSION= 0.3
|
2000-08-02 13:30:29 +00:00
|
|
|
CATEGORIES= devel python gnome
|
|
|
|
MASTER_SITES= http://www.river-bank.demon.co.uk/software/
|
|
|
|
DISTNAME= VeePee-${PORTVERSION}
|
|
|
|
|
|
|
|
MAINTAINER= sobomax@FreeBSD.org
|
|
|
|
|
2000-09-08 12:24:00 +00:00
|
|
|
BUILD_DEPENDS= python1.5:${PORTSDIR}/lang/python15
|
2000-08-02 13:30:29 +00:00
|
|
|
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
|
|
|
gd.1:${PORTSDIR}/graphics/gd
|
2000-09-08 12:24:00 +00:00
|
|
|
RUN_DEPENDS= python1.5:${PORTSDIR}/lang/python15
|
2000-08-02 13:30:29 +00:00
|
|
|
|
|
|
|
USE_XLIB= yes
|
|
|
|
USE_LIBTOOL= yes
|
|
|
|
|
|
|
|
CONFIGURE_ARGS= --with-gd-includes=${LOCALBASE}/include/gd \
|
|
|
|
--disable-kde
|
|
|
|
|
2000-09-15 07:45:41 +00:00
|
|
|
pre-patch:
|
2000-08-02 13:30:29 +00:00
|
|
|
@${PERL} -pi -e 's|-lpthread|-pthread|g' \
|
|
|
|
${WRKSRC}/configure
|
|
|
|
|
2000-09-15 07:45:41 +00:00
|
|
|
post-configure:
|
|
|
|
@${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \
|
|
|
|
${WRKSRC}/libtool
|
|
|
|
|
2000-08-02 13:30:29 +00:00
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
${MKDIR} ${PREFIX}/share/doc/veepee
|
|
|
|
${MKDIR} ${PREFIX}/share/examples/veepee
|
|
|
|
cd ${WRKSRC}/doc && \
|
|
|
|
${INSTALL_DATA} GNOMEapi.txt controls.txt ${PREFIX}/share/doc/veepee
|
|
|
|
cd ${WRKSRC}/examples && \
|
|
|
|
${INSTALL_SCRIPT} *.py ${PREFIX}/share/examples/veepee
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|