Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Feb 2003 20:53:54 +0100 (CET)
From:      Koop Mast <einekoai@chello.nl>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/48437: Maintainer update www/bluefish-devel 
Message-ID:  <20030218195354.655A8B816@prisma.quccc.org>

next in thread | raw e-mail | index | archive | help

>Number:         48437
>Category:       ports
>Synopsis:       Maintainer update www/bluefish-devel
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Feb 18 12:00:33 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     Koop Mast
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD prisma.quccc.org 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Mon Jan 13 22:53:21 CET 2003 root@prisma.quccc.org:/usr/obj/usr/src/sys/RAINBOW i386


	
>Description:
	Update to 0.9, still not all the gtk1 functionality.

	add knob for debug mode, install bluefish.desktop file in the correct
	place.
	please remove pkg-comment, using COMMENT in Makefile.
	
>How-To-Repeat:
	
>Fix:

	

--- bluefish-devel.diff begins here ---
diff -ruN bluefish-devel.orig/Makefile bluefish-devel/Makefile
--- bluefish-devel.orig/Makefile	Fri Feb  7 22:52:36 2003
+++ bluefish-devel/Makefile	Tue Feb 18 19:52:32 2003
@@ -6,30 +6,49 @@
 #
 
 PORTNAME=	bluefish
-PORTVERSION=	0.8.20030207
+PORTVERSION=	0.9
 CATEGORIES=	www editors
-MASTER_SITES=	http://pkedu.fbt.eitn.wau.nl/~olivier/snapshots/ \
-		ftp://bluefish.advancecreations.com/pub/bluefish/snapshots/ \
-		http://bluefish.mrball.net/snapshots/ \
-		ftp://ftp.ratisbona.com/pub/bluefish/snapshots/ \
-		http://bluefish.shellhung.org/snapshots/
-DISTNAME=	${PORTNAME}-gtk2port-2003-02-07
-EXTRACT_SUFX=	.tgz
+MASTER_SITES=	http://pkedu.fbt.eitn.wau.nl/~olivier/${DOWNLOAD}/ \
+		ftp://bluefish.advancecreations.com/pub/bluefish/${DOWNLOAD}/ \
+		http://bluefish.mrball.net/${DOWNLOAD}/ \
+		ftp://ftp.ratisbona.com/pub/bluefish/${DOWNLOAD}/ \
+		http://bluefish.shellhung.org/${DOWNLOAD}/
 
 MAINTAINER=	einekoai@chello.nl
+COMMENT=	HTML editor designed for the experienced web designer
 
 LIB_DEPENDS=	gtk-x11-2.0.200:${PORTSDIR}/x11-toolkits/gtk20 \
 		pcre.0:${PORTSDIR}/devel/pcre \
 		aspell.15:${PORTSDIR}/textproc/aspell
 RUN_DEPENDS=	weblint:${PORTSDIR}/www/weblint
 
-WRKSRC=		${WRKDIR}/bluefish-gtk2
+DOWNLOAD=	downloads
 NO_LATEST_LINK=	yes
+USE_BZIP2=	yes
 USE_GMAKE=	yes
 USE_PERL5_BUILD=	yes
 USE_X_PREFIX=	yes
+USE_REINPLACE=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
 		LDFLAGS="-L${LOCALBASE}/lib"
+.include <bsd.port.pre.mk>
 
-.include <bsd.port.mk>
+# Turns debugging output on
+.if defined(WITH_DEBUG)
+CONFIGURE_ARGS+=	--with-debugging-output
+.endif
+
+pre-everything::
+.if !defined(WITH_DEBUG)
+	@${ECHO_MSG} ""
+	@${ECHO_MSG} "WITH_DEBUG=yes for debug support"
+.endif
+
+post-patch:
+# Make sure bluefish.desktop is installed
+	@${REINPLACE_CMD} \
+		-e 's|/usr|${PREFIX}|g;' \
+		${WRKSRC}/data/Makefile.in
+
+.include <bsd.port.post.mk>
diff -ruN bluefish-devel.orig/distinfo bluefish-devel/distinfo
--- bluefish-devel.orig/distinfo	Fri Feb  7 22:52:36 2003
+++ bluefish-devel/distinfo	Tue Feb 18 07:36:12 2003
@@ -1 +1 @@
-MD5 (bluefish-gtk2port-2003-02-07.tgz) = 6e7b4602dbd375a22236307b7e8c11a9
+MD5 (bluefish-0.9.tar.bz2) = 6f3dd98df0959469d3637a44eb0e08cf
diff -ruN bluefish-devel.orig/pkg-comment bluefish-devel/pkg-comment
--- bluefish-devel.orig/pkg-comment	Sun Jan 26 22:26:49 2003
+++ bluefish-devel/pkg-comment	Thu Jan  1 01:00:00 1970
@@ -1 +0,0 @@
-HTML editor designed for the experienced web designer
diff -ruN bluefish-devel.orig/pkg-plist bluefish-devel/pkg-plist
--- bluefish-devel.orig/pkg-plist	Fri Feb  7 22:52:36 2003
+++ bluefish-devel/pkg-plist	Tue Feb 18 19:50:42 2003
@@ -12,6 +12,7 @@
 share/bluefish/icon_php.png
 share/bluefish/icon_unknown.png
 share/bluefish/icon_xml.png
+share/gnome/apps/Applications/bluefish.desktop
 share/locale/da/LC_MESSAGES/bluefish.mo
 share/locale/es/LC_MESSAGES/bluefish.mo
 share/locale/fr/LC_MESSAGES/bluefish.mo
@@ -19,4 +20,6 @@
 share/locale/it/LC_MESSAGES/bluefish.mo
 share/locale/no/LC_MESSAGES/bluefish.mo
 share/locale/pl/LC_MESSAGES/bluefish.mo
+share/locale/ru/LC_MESSAGES/bluefish.mo
+share/locale/sv/LC_MESSAGES/bluefish.mo
 @dirrm share/bluefish
--- bluefish-devel.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030218195354.655A8B816>