diff options
author | anray <anray@FreeBSD.org> | 2006-01-07 23:35:52 +0800 |
---|---|---|
committer | anray <anray@FreeBSD.org> | 2006-01-07 23:35:52 +0800 |
commit | d6144cbb6a4d862c72d87b92769a76e1e791187c (patch) | |
tree | 598e05990e69fac391bc07a4b014dacafb83d9c9 /x11/xnee/Makefile | |
parent | 0e68df669943ad6923f80055082de4c34e34a60e (diff) | |
download | freebsd-ports-gnome-d6144cbb6a4d862c72d87b92769a76e1e791187c.tar.gz freebsd-ports-gnome-d6144cbb6a4d862c72d87b92769a76e1e791187c.tar.zst freebsd-ports-gnome-d6144cbb6a4d862c72d87b92769a76e1e791187c.zip |
Update to 2.03
PR: ports/91463
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Diffstat (limited to 'x11/xnee/Makefile')
-rw-r--r-- | x11/xnee/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/x11/xnee/Makefile b/x11/xnee/Makefile index 9d32e9e543ff..1a4dca0c216b 100644 --- a/x11/xnee/Makefile +++ b/x11/xnee/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xnee -PORTVERSION= 2.02 +PORTVERSION= 2.03 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -22,7 +22,12 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-doc INFO= xnee -PLIST_FILES= bin/cnee lib/libxnee.a +PLIST_FILES= bin/cnee \ + lib/libxnee.a \ + share/Xnee/example1.xns \ + share/Xnee/simple_bash.sh \ + share/Xnee/xnee.sh +PLIST_DIRS= share/Xnee .include <bsd.port.pre.mk> @@ -34,6 +39,10 @@ PKGNAMESUFFIX= -gtk CONFIGURE_ARGS+= --disable-gui .endif +post-patch: + @${REINPLACE_CMD} -e 's|^#!/bin|!#!${LOCALBASE}/bin|g' \ + ${WRKSRC}/examples/simple_bash.sh + post-install: cd ${WRKSRC}/doc && makeinfo --no-split xnee.texi ${INSTALL_DATA} ${WRKSRC}/doc/xnee.info ${PREFIX}/${INFO_PATH} |