update to 1.0
This commit is contained in:
parent
c331431b0c
commit
828811a2ad
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.35 2004/12/11 13:29:21 alek Exp $
|
||||
# $OpenBSD: Makefile,v 1.36 2005/02/14 23:00:49 couderc Exp $
|
||||
|
||||
COMMENT= "HTML editor for experienced web designers"
|
||||
|
||||
VERSION= 0.13
|
||||
VERSION= 1.0
|
||||
DISTNAME= bluefish-${VERSION}
|
||||
CATEGORIES= www
|
||||
HOMEPAGE= http://bluefish.openoffice.nl/
|
||||
|
@ -1,4 +1,4 @@
|
||||
MD5 (bluefish-0.13.tar.gz) = d829fe021f94f8d3ecf7625ca89200ab
|
||||
RMD160 (bluefish-0.13.tar.gz) = 686c29a3fa8f161f298ec7a61812847612575dfa
|
||||
SHA1 (bluefish-0.13.tar.gz) = e00ddbceb22e6cdd08b915da85e4139ff08f195d
|
||||
SIZE (bluefish-0.13.tar.gz) = 1825054
|
||||
MD5 (bluefish-1.0.tar.gz) = 81b90cea4a4a460e7a972102f7edf0ea
|
||||
RMD160 (bluefish-1.0.tar.gz) = 92c7e20c28104a8fb6ad92b5d1d1e2f012b7c6e2
|
||||
SHA1 (bluefish-1.0.tar.gz) = a21ab8ab279928011c8d7517f8a34de10374aba7
|
||||
SIZE (bluefish-1.0.tar.gz) = 1873473
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-configure,v 1.2 2004/05/31 14:36:16 couderc Exp $
|
||||
--- configure.orig 2004-05-31 15:43:19.000000000 +0200
|
||||
+++ configure 2004-05-31 15:44:22.000000000 +0200
|
||||
@@ -3286,44 +3286,6 @@ else
|
||||
$OpenBSD: patch-configure,v 1.3 2005/02/14 23:00:49 couderc Exp $
|
||||
--- configure.orig Mon Feb 14 23:34:24 2005
|
||||
+++ configure Mon Feb 14 23:35:19 2005
|
||||
@@ -3390,45 +3390,6 @@ else
|
||||
echo "no"
|
||||
fi
|
||||
|
||||
@ -15,13 +15,14 @@ $OpenBSD: patch-configure,v 1.2 2004/05/31 14:36:16 couderc Exp $
|
||||
-#define HAVE_GNOME_VFS 1
|
||||
-_ACEOF
|
||||
-
|
||||
-
|
||||
-else
|
||||
- echo "no"
|
||||
- echo "gnome-vfs-2.0 not found, opening remote files will be disabled"
|
||||
- HAVE_GNOME_VFS=0
|
||||
-fi
|
||||
-
|
||||
-echo -n "checking for gnome-vfs-2.2... "
|
||||
-echo -n "checking for gnome-vfs >= 2.2... "
|
||||
-if pkg-config gnome-vfs-2.0 --atleast-version=2.2 ; then
|
||||
- cat >>confdefs.h <<\_ACEOF
|
||||
-#define HAVE_ATLEAST_GNOMEVFS_2_2 1
|
||||
@ -32,10 +33,10 @@ $OpenBSD: patch-configure,v 1.2 2004/05/31 14:36:16 couderc Exp $
|
||||
- echo "no"
|
||||
-fi
|
||||
-
|
||||
-echo -n "checking for gnome-vfs-2.5... "
|
||||
-if pkg-config gnome-vfs-2.0 --atleast-version=2.5 ; then
|
||||
-echo -n "checking for gnome-vfs >= 2.6... "
|
||||
-if pkg-config gnome-vfs-2.0 --atleast-version=2.6 ; then
|
||||
- cat >>confdefs.h <<\_ACEOF
|
||||
-#define HAVE_ATLEAST_GNOMEVFS_2_5 1
|
||||
-#define HAVE_ATLEAST_GNOMEVFS_2_6 1
|
||||
-_ACEOF
|
||||
-
|
||||
- echo "yes"
|
||||
@ -43,6 +44,6 @@ $OpenBSD: patch-configure,v 1.2 2004/05/31 14:36:16 couderc Exp $
|
||||
- echo "no"
|
||||
-fi
|
||||
-
|
||||
# Extract the first word of "pcre-config", so it can be a program name with args.
|
||||
set dummy pcre-config; ac_word=$2
|
||||
echo "$as_me:$LINENO: checking for $ac_word" >&5
|
||||
echo -n "checking for libgnomeui >= 2.6... "
|
||||
if pkg-config libgnomeui-2.0 --atleast-version=2.6 ; then
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-data_Makefile_in,v 1.4 2004/05/31 14:36:16 couderc Exp $
|
||||
--- data/Makefile.in.orig 2004-05-31 15:50:10.000000000 +0200
|
||||
+++ data/Makefile.in 2004-05-31 15:50:30.000000000 +0200
|
||||
@@ -38,7 +38,7 @@ FUNCREFFILES = funcref_html.xml funcref_
|
||||
|
||||
all: $(DEFAULTFILES)
|
||||
sed -e 's!ICONDIR!$(iconpath)!' < bluefish.desktop.in > bluefish.desktop
|
||||
- if [ ${have_gnome_vfs} = "1" ] ; then \
|
||||
+ if [ "${have_gnome_vfs}" = "1" ] ; then \
|
||||
sed -e 's!EXPECT_URIS!true!' -e 's!SUPPORTED_URI_SCHEMES!file,http,ftp,sftp,smb!' < bluefish.applications.in > bluefish.applications ;\
|
||||
else \
|
||||
sed -e 's!EXPECT_URIS!false!' -e 's!SUPPORTED_URI_SCHEMES!!' < bluefish.applications.in > bluefish.applications ;\
|
@ -1,8 +1,12 @@
|
||||
@comment $OpenBSD: PLIST,v 1.14 2004/09/15 18:49:48 espie Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.15 2005/02/14 23:00:49 couderc Exp $
|
||||
bin/bluefish
|
||||
share/applications/
|
||||
share/applications/bluefish.desktop
|
||||
share/bluefish/
|
||||
share/bluefish/bluefish_splash.png
|
||||
share/bluefish/custom_menu.de.default
|
||||
share/bluefish/custom_menu.default
|
||||
share/bluefish/custom_menu.fr.default
|
||||
share/bluefish/encodings.default
|
||||
share/bluefish/filetypes.default
|
||||
share/bluefish/funcref_css.xml
|
||||
@ -22,30 +26,25 @@ share/bluefish/icon_python.png
|
||||
share/bluefish/icon_r.png
|
||||
share/bluefish/icon_unknown.png
|
||||
share/bluefish/icon_xml.png
|
||||
share/locale/bg/LC_MESSAGES/bluefish.mo
|
||||
share/locale/cs/LC_MESSAGES/bluefish.mo
|
||||
share/locale/da/LC_MESSAGES/bluefish.mo
|
||||
share/locale/de/LC_MESSAGES/bluefish.mo
|
||||
share/locale/el/LC_MESSAGES/bluefish.mo
|
||||
share/locale/es/LC_MESSAGES/bluefish.mo
|
||||
share/locale/fi/LC_MESSAGES/bluefish.mo
|
||||
share/locale/fr/LC_MESSAGES/bluefish.mo
|
||||
share/locale/hu/LC_MESSAGES/bluefish.mo
|
||||
share/locale/it/LC_MESSAGES/bluefish.mo
|
||||
share/locale/ja/LC_MESSAGES/bluefish.mo
|
||||
share/locale/nl/LC_MESSAGES/bluefish.mo
|
||||
share/locale/no/LC_MESSAGES/bluefish.mo
|
||||
share/locale/pl/LC_MESSAGES/bluefish.mo
|
||||
share/locale/pt/LC_MESSAGES/bluefish.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/bluefish.mo
|
||||
share/locale/ro/LC_MESSAGES/bluefish.mo
|
||||
share/locale/ru/LC_MESSAGES/bluefish.mo
|
||||
share/locale/sr/
|
||||
share/locale/sr/LC_MESSAGES/
|
||||
share/locale/sr/LC_MESSAGES/bluefish.mo
|
||||
share/locale/sv/LC_MESSAGES/bluefish.mo
|
||||
share/locale/ta/
|
||||
share/locale/ta/LC_MESSAGES/
|
||||
share/locale/ta/LC_MESSAGES/bluefish.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/bluefish.mo
|
||||
share/mime/
|
||||
share/mime/packages/
|
||||
share/mime/packages/bluefish.xml
|
||||
share/pixmaps/
|
||||
share/pixmaps/bluefish-icon.png
|
||||
share/pixmaps/gnome-application-bluefish-project.png
|
||||
|
Loading…
Reference in New Issue
Block a user