diff options
author | sem <sem@FreeBSD.org> | 2005-07-26 16:21:13 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2005-07-26 16:21:13 +0800 |
commit | c0cb020fd929842f3e720c25db3bfc98c9130398 (patch) | |
tree | d535a603a6dba96c11b445e1dd5f2b084a6cd5f5 /x11/xnee/Makefile | |
parent | 639a3715a5498ee04b176a73954047a6206caebc (diff) | |
download | freebsd-ports-gnome-c0cb020fd929842f3e720c25db3bfc98c9130398.tar.gz freebsd-ports-gnome-c0cb020fd929842f3e720c25db3bfc98c9130398.tar.zst freebsd-ports-gnome-c0cb020fd929842f3e720c25db3bfc98c9130398.zip |
- Update to 2.00
PR: ports/84073
Submitted by: Ports Fury
Diffstat (limited to 'x11/xnee/Makefile')
-rw-r--r-- | x11/xnee/Makefile | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/x11/xnee/Makefile b/x11/xnee/Makefile index b1293721f15e..5d194b75b3b6 100644 --- a/x11/xnee/Makefile +++ b/x11/xnee/Makefile @@ -6,32 +6,37 @@ # PORTNAME= xnee -PORTVERSION= 1.08 +PORTVERSION= 2.00 CATEGORIES= x11 -MASTER_SITES= http://www.sandklef.com/xnee/tars/ \ - ${MASTER_SITE_GNU} +MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= Xnee-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= X events recorder and player -BUILD_DEPENDS= texi2html:${PORTSDIR}/textproc/texi2html - USE_X_PREFIX= yes -USE_PERL5= yes +WANT_GNOME= yes +USE_GNOME= gnomehack gnometarget GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -MAN1= xnee.1 -INFO= xnee xnee_develop +INFO= xnee +PLIST_FILES= bin/cnee lib/libxnee.a + +.include <bsd.port.pre.mk> + +.if ${HAVE_GNOME:Mgtk20}!="" +USE_GNOME+= gtk20 +PLIST_FILES+= bin/gnee +PKGNAMESUFFIX= -gtk +.else +CONFIGURE_ARGS+= --disable-gui +.endif -post-patch: - @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${PERL} -pi -e \ - 's| -g | \@CFLAGS\@ |g ; \ - s|-lpthread|${PTHREAD_LIBS:S/"//g}|g ; \ - s|-ldl||g' +post-build: + cd ${WRKSRC}/doc && makeinfo --no-split xnee.texi -post-install: - ${INSTALL_MAN} ${WRKSRC}/xnee/doc/xnee.1 ${MANPREFIX}/man/man1 +pre-install: + ${INSTALL_DATA} ${WRKSRC}/doc/xnee.info ${PREFIX}/${INFO_PATH} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |