d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
70 lines
1.7 KiB
Makefile
70 lines
1.7 KiB
Makefile
# New ports collection makefile for: dia
|
|
# Date created: 21 December 1999
|
|
# Whom: saper@system.pl
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dia
|
|
DISTVERSION= 0.96.1
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= graphics gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER?= gnome@FreeBSD.org
|
|
COMMENT= Diagram creation program, similar to Visio
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl
|
|
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
|
|
|
|
USE_BZIP2= yes
|
|
USE_XLIB= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk20 gnomehack gnomeprefix libxslt libartlgpl2 intlhack \
|
|
desktopfileutils
|
|
WANT_GNOME= yes
|
|
USE_GETTEXT= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib -lintl" \
|
|
LOCALBASE="${LOCALBASE}"
|
|
|
|
MAN1= dia.1
|
|
|
|
.if !defined(WITHOUT_PYTHON)
|
|
USE_PYTHON= yes
|
|
USE_GNOME+= pygtk2
|
|
CONFIGURE_ARGS= --with-python
|
|
PLIST_SUB= PYTHON:=""
|
|
.else
|
|
PLIST_SUB= PYTHON:="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${HAVE_GNOME:Mlibgnomeui}!=""
|
|
USE_GNOME+= libgnomeui
|
|
CONFIGURE_ARGS+= --enable-gnome --enable-bonobo
|
|
PKGNAMESUFFIX= -gnome
|
|
.else
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name Makefile.in | \
|
|
${XARGS} ${REINPLACE_CMD} -e \
|
|
's,\(^GTK_LIBS.*\),\1 ${PTHREAD_LIBS}, ; \
|
|
s,\(^GTK_CFLAGS = \),\1 ${PTHREAD_CFLAGS} ,'
|
|
.endif
|
|
|
|
pre-configure:
|
|
@${REINPLACE_CMD} -e 's|http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl|${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl| ; \
|
|
s|echo aout|echo elf|g' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/dia.xpm ${PREFIX}/share/gnome/dia/
|
|
@-update-desktop-database
|
|
|
|
.include <bsd.port.post.mk>
|