mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
e2f1a39106
- these include www/ x11/ x11-clocks/ x11-servers/ x11-themes/ maintained by ports@ PR: ports/101916 Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org>
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
# New ports collection makefile for: libexo
|
|
# Date created: 23 October 2004
|
|
# Whom: Matt Lancereau <ports@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libexo
|
|
PORTVERSION= 0.3.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11 xfce
|
|
MASTER_SITES= http://download.berlios.de/xfce-goodies/
|
|
DISTNAME= exo-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Terminal library, extensions to Xfce by os-cillation
|
|
|
|
LIB_DEPENDS= xfcegui4.3:${PORTSDIR}/x11-toolkits/libxfce4gui
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= glib20
|
|
USE_X_PREFIX= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
.if defined(WITH_GTKDOC)
|
|
BUILD_DEPENDS+= gtkdocize:${PORTSDIR}/textproc/gtk-doc
|
|
CONFIGURE_ARGS+=--enable-gtk-doc
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-gtk-doc
|
|
.endif
|
|
|
|
.if defined(WITH_PYTHON)
|
|
CONFIGURE_ARGS+=--enable-python
|
|
USE_PYTHON= yes
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pygtk.py:${PORTSDIR}/x11-toolkits/py-gtk
|
|
PLIST_SUB+= PYTHON=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-python
|
|
PLIST_SUB+= PYTHON="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
|
|
${WRKSRC}/exo/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|