From 083abed816d05daa55d0eacb3ba1cabb75cc33f8 Mon Sep 17 00:00:00 2001 From: mi Date: Wed, 19 Sep 2001 15:05:26 +0000 Subject: This little utility is rather usefull on X11-less servers -- you may with to modify xterm's title or something after you login to one. It does not use X11 at all, except to build its Makefile. Use the simple Makefile of our own, to drop build-dependency on X11. As a side effect, it will be installed into LOCALBASE, rather than X11BASE/bin. Bump up PORTREVISION. --- x11/xtattr/Makefile | 4 +++- x11/xtattr/files/Makefile.bsd | 12 ++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 x11/xtattr/files/Makefile.bsd (limited to 'x11/xtattr') diff --git a/x11/xtattr/Makefile b/x11/xtattr/Makefile index 6114e01406c9..cb197f149413 100644 --- a/x11/xtattr/Makefile +++ b/x11/xtattr/Makefile @@ -7,13 +7,15 @@ PORTNAME= xtattr PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= asami/LOCAL_PORTS MAINTAINER= ports@FreeBSD.org -USE_IMAKE= yes +MAKEFILE= ${FILESDIR}/Makefile.bsd MAN1= xtattr.1 +MANCOMPRESSED= maybe .include diff --git a/x11/xtattr/files/Makefile.bsd b/x11/xtattr/files/Makefile.bsd new file mode 100644 index 000000000000..3781891853ab --- /dev/null +++ b/x11/xtattr/files/Makefile.bsd @@ -0,0 +1,12 @@ +# $FreeBSD$ + +PROG=xtattr +MAN=xtattr.1 +BINDIR=${PREFIX}/bin +MANDIR=${PREFIX}/man/man + +# I'd love to see a more elegant way to do this :( +xtattr.1:: xtattr.man + ln -s xtattr.man xtattr.1 + +.include -- cgit