mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
76e103adab
Python 2 is used for libglade-convert any users would have converted ages ago.
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# Created by: Ade Lovett <ade@lovett.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libglade2
|
|
PORTVERSION= 2.6.4
|
|
PORTREVISION?= 10
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= GNOME/sources/${PORTNAME:S/2$//}/${PORTVERSION:C/..$//}
|
|
DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION}
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GNOME glade library
|
|
|
|
LICENSE= LGPL20
|
|
|
|
LIB_DEPENDS= libfreetype.so:print/freetype2 \
|
|
libfontconfig.so:x11-fonts/fontconfig
|
|
|
|
USES= tar:bzip2
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
RUN_DEPENDS= xmlcatmgr:textproc/xmlcatmgr
|
|
|
|
USES+= gmake gnome libtool:keepla pathfix pkgconfig
|
|
USE_GNOME= cairo gdkpixbuf2 libxml2 gtk20 referencehack
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \
|
|
--disable-gtk-doc \
|
|
--with-xml-catalog=${LOCALBASE}/share/xml/catalog.ports
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_SUB= XMLCATALOG="${LOCALBASE}/bin/xmlcatalog" \
|
|
CATALOG_PORTS_XML="${LOCALBASE}/share/xml/catalog.ports"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|glib-2.0|gmodule-2.0 glib-2.0|g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -E 's/in (python.*)+ none/in none/' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/libglade/2.0
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
.endif
|