summaryrefslogtreecommitdiff
path: root/x11/xtattr
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2001-09-19 15:05:26 +0000
committerMikhail Teterin <mi@FreeBSD.org>2001-09-19 15:05:26 +0000
commit89d4534a9b263cac8f8915c2ec3dd626f27b8545 (patch)
treea4ca87fca30f826e87c123c1757408f875f5c78b /x11/xtattr
parentUpdate ruby to the 1.6.5 release. (diff)
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.
Notes
Notes: svn path=/head/; revision=47990
Diffstat (limited to 'x11/xtattr')
-rw-r--r--x11/xtattr/Makefile4
-rw-r--r--x11/xtattr/files/Makefile.bsd12
2 files changed, 15 insertions, 1 deletions
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 <bsd.port.mk>
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 <bsd.prog.mk>