diff options
author | marcus <marcus@FreeBSD.org> | 2004-01-03 16:17:19 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-01-03 16:17:19 +0800 |
commit | 020941c470435bb4c5bd0497119e9732b9fdf489 (patch) | |
tree | a1d8fcebee95e967fb78b6168b312baedcccc424 /accessibility/dasher/Makefile | |
parent | 1b87abdc3657738d02a0cf5fe7ad3736a0bcf9fa (diff) | |
download | freebsd-ports-gnome-020941c470435bb4c5bd0497119e9732b9fdf489.tar.gz freebsd-ports-gnome-020941c470435bb4c5bd0497119e9732b9fdf489.tar.zst freebsd-ports-gnome-020941c470435bb4c5bd0497119e9732b9fdf489.zip |
Merge diffs from my GNOME 2.5 repo.
* Make this port build
* Use USE_BZIP2
* Point to MASTER_SITE_GNOME
* Correct pkg-plist
* Obey CFLAGS
* Use USE_LIBTOOL to avoid threading problems on -CURRENT
* Add additional categories
Diffstat (limited to 'accessibility/dasher/Makefile')
-rw-r--r-- | accessibility/dasher/Makefile | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/accessibility/dasher/Makefile b/accessibility/dasher/Makefile index 6bb319273272..f0f8ca7cd2da 100644 --- a/accessibility/dasher/Makefile +++ b/accessibility/dasher/Makefile @@ -7,24 +7,28 @@ PORTNAME= dasher PORTVERSION= 3.0.2 -CATEGORIES= editors -MASTER_SITES= http://www.inference.phy.cam.ac.uk/${PORTNAME}/download/linux/source/3.0/ +PORTREVISION= 1 +CATEGORIES= editors x11 gnome accessibility +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/3.2 DIST_SUBDIR= gnome2 MAINTAINER= purple@lewiz.net COMMENT= Information efficient text-entry interface -LIB_DEPENDS= intl.5:${PORTSDIR}/devel/gettext - +USE_BZIP2= yes USE_X_PREFIX= yes - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gtk2 --disable-gtkmmtest -CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" CFLAGS="-I${LOCALBASE}/include" USE_GMAKE= yes - -LDFLAGS+= -L{LOCALBASE}/lib +USE_GNOME= gnomeprefix gnomehack gnomehier gconf2 libglade2 +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" MAN1= dasher.1 +post-patch: + @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/configure + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|-O2||g' + .include <bsd.port.mk> |