aboutsummaryrefslogtreecommitdiff
path: root/sysutils/thefish
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-08-09 08:31:02 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-08-09 08:31:02 +0000
commitcdd78865701357cec4be27e8b981028098d53967 (patch)
tree8de82672a8450d12f8edd65a04c1aebb2eaa154e /sysutils/thefish
parent93184cdab1c5642a513d9930ff348502a7b6dc64 (diff)
downloadports-cdd78865701357cec4be27e8b981028098d53967.tar.gz
ports-cdd78865701357cec4be27e8b981028098d53967.zip
Notes
Diffstat (limited to 'sysutils/thefish')
-rw-r--r--sysutils/thefish/Makefile16
-rw-r--r--sysutils/thefish/distinfo4
-rw-r--r--sysutils/thefish/pkg-message3
3 files changed, 16 insertions, 7 deletions
diff --git a/sysutils/thefish/Makefile b/sysutils/thefish/Makefile
index 358db0c4a1c7..964d98a303a9 100644
--- a/sysutils/thefish/Makefile
+++ b/sysutils/thefish/Makefile
@@ -6,21 +6,27 @@
#
PORTNAME= thefish
-PORTVERSION= 0.5.1
-PORTREVISION= 1
+PORTVERSION= 0.6
CATEGORIES= sysutils
MASTER_SITES= http://www.energyhq.es.eu.org/files/
MAINTAINER= flynn@energyhq.es.eu.org
-COMMENT= Gtk+/ncurses rc.conf editor/management tool
+COMMENT= Qt/Gtk+/ncurses rc.conf editor/management tool
.if defined(WITHOUT_X11) || defined(NO_GUI)
NO_GUI= yes
MAKE_ENV+= NO_GUI=yes
.else
+.if !defined(WITH_QT)
USE_GNOME= gtk20
USE_X_PREFIX= yes
.endif
+.endif
+.if defined(WITH_QT)
+USE_QT_VER= 3
+MAKE_ENV+= WITH_QT=yes
+CXXFLAGS+= -Wall -DWITH_QT -I${X11BASE}/include
+.endif
MAN1= thefish.1
PLIST_FILES= bin/thefish
@@ -29,6 +35,10 @@ pre-everything::
.if !defined(WITHOUT_X11) && !defined(NO_GUI)
@${CAT} ${PKGMESSAGE}
.endif
+.if !defined(WITH_QT) && !defined(NO_GUI) && !defined(WITHOUT_X11)
+ @${ECHO_CMD} "- You can replace the GTK+ interface with a Qt version by defining WITH_QT"
+ @${ECHO_CMD}
+.endif
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/thefish ${PREFIX}/bin
diff --git a/sysutils/thefish/distinfo b/sysutils/thefish/distinfo
index abf2f31704fa..ecc491c44b56 100644
--- a/sysutils/thefish/distinfo
+++ b/sysutils/thefish/distinfo
@@ -1,2 +1,2 @@
-MD5 (thefish-0.5.1.tar.gz) = 9bccf2987a19c59bff144364b74c5e6c
-SIZE (thefish-0.5.1.tar.gz) = 37174
+MD5 (thefish-0.6.tar.gz) = d16c7a2d89fe7d96d15ecae1fc67ca72
+SIZE (thefish-0.6.tar.gz) = 41811
diff --git a/sysutils/thefish/pkg-message b/sysutils/thefish/pkg-message
index 6d9112be7e81..fac9b0fb6f5e 100644
--- a/sysutils/thefish/pkg-message
+++ b/sysutils/thefish/pkg-message
@@ -1,3 +1,2 @@
***********************************************************************
-To build The Fish without the GTK+ UI, define NO_GUI or WITHOUT_X11
-***********************************************************************
+- To build The Fish without the Qt or GTK+ UI, define NO_GUI or WITHOUT_X11