mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
42 lines
1017 B
Makefile
42 lines
1017 B
Makefile
|
# Ports collection Makefile for: veepee
|
||
|
# Date created: 2 August 2000
|
||
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PORTNAME= veepee
|
||
|
PORTVERSION= 0.2
|
||
|
CATEGORIES= devel python gnome
|
||
|
MASTER_SITES= http://www.river-bank.demon.co.uk/software/
|
||
|
DISTNAME= VeePee-${PORTVERSION}
|
||
|
|
||
|
MAINTAINER= sobomax@FreeBSD.org
|
||
|
|
||
|
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
|
||
|
LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
|
||
|
gd.1:${PORTSDIR}/graphics/gd
|
||
|
RUN_DEPENDS= python:${PORTSDIR}/lang/python
|
||
|
|
||
|
USE_XLIB= yes
|
||
|
USE_LIBTOOL= yes
|
||
|
|
||
|
CONFIGURE_ARGS= --with-gd-includes=${LOCALBASE}/include/gd \
|
||
|
--disable-kde
|
||
|
|
||
|
post-extract:
|
||
|
@${PERL} -pi -e 's|-lpthread|-pthread|g' \
|
||
|
${WRKSRC}/configure
|
||
|
|
||
|
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>
|