diff options
Diffstat (limited to 'devel/bonobo-conf/Makefile')
-rw-r--r-- | devel/bonobo-conf/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/devel/bonobo-conf/Makefile b/devel/bonobo-conf/Makefile new file mode 100644 index 000000000000..7562e119ef0c --- /dev/null +++ b/devel/bonobo-conf/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: bonobo-conf +# Date created: 9th February 2001 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= bonobo-conf +PORTVERSION= 0.1 +CATEGORIES= devel gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= unstable/sources/bonobo-conf + +MAINTAINER= ade@FreeBSD.org + +LIB_DEPENDS= bonobo.2:${PORTSDIR}/devel/bonobo \ + gconf-1.1:${PORTSDIR}/devel/gconf + +USE_X_PREFIX= yes +USE_PERL5= yes +USE_GMAKE= yes +USE_GNOME= yes +USE_LIBTOOL= yes +INSTALLS_SHLIB= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" + +pre-patch: + @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ + s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' + +.include <bsd.port.mk> |