Subversion Repositories pub

Compare Revisions

No changes between revisions

Ignore whitespace Rev 11 → Rev 8

/nautilus-follow-symlink/trunk/po/libnautilus-follow-symlink.pot
File deleted
/nautilus-follow-symlink/trunk/po/ca.po
File deleted
/nautilus-follow-symlink/trunk/po/es.po
File deleted
/nautilus-follow-symlink/trunk/po/POTFILES.in
File deleted
/nautilus-follow-symlink/trunk/debian/changelog
1,12 → 1,3
nautilus-follow-symlink (0.6.0-out.1) experimental; urgency=low
 
* New upstream release
* debian/control:
- Added intltool and gettext (new requirements of 0.6)
- Corrected Build-Depends
 
-- Toni Corvera <outlyer@outlyer.net> Tue, 24 Oct 2006 20:25:12 +0200
 
nautilus-follow-symlink (0.5.2-out.2) unstable; urgency=low
 
* debian/rules: Install upstream ChangeLog
/nautilus-follow-symlink/trunk/debian/control
2,11 → 2,12
Section: contrib/gnome
Priority: extra
Maintainer: Toni Corvera <outlyer@outlyer.net>
Build-Depends: debhelper (>= 4.0.0), gcc, libtool, pkg-config, libc6-dev, libglib2.0-dev, libnautilus-extension-dev, intltool (>= 0.18), gettext, automaken, autoconf
Build-Depends: debhelper (>= 4.0.0)
Standards-Version: 3.6.2
 
Package: nautilus-follow-symlink
Architecture: any
Build-Depends: gcc, libtool, pkg-config, libc6-dev, libglib2.0-dev, libnautilus-extension-dev
Depends: ${shlibs:Depends}, ${misc:Depends}, nautilus
Description: nautilus plugin to open the location pointed by a symlink
This extension adds a context menu option to symbolic links to
/nautilus-follow-symlink/trunk/ChangeLog
1,11 → 1,6
Iterim milestones
These private versions, the version numbering bumps just denote
that a development milestone is achieved
Iterim milestones:
 
0.6.0:
* Added support for i18n, updated build-dependancies accordingly
 
0.5.2 (24 oct 2006):
0.5.2:
* INTERNAL: Corrected includes and function declarations
* INTERNAL: Switched to the autotools build system
* BUGFIX: Retrieve libnautilus-extension's directory for installation
/nautilus-follow-symlink/trunk/src/Makefile.am
1,7 → 1,4
 
# Required to correctly install the locale files
CPPFLAGS+=-DGNOMELOCALEDIR=\""$(datadir)/locale"\"
 
nautilus_extension_lib_LTLIBRARIES = libnautilus-follow-symlink.la
 
# Must be installed in nautilus' extension dir
/nautilus-follow-symlink/trunk/src/common.h
9,9 → 9,6
#include <glib/gmessages.h> /* g_print() */
#include <glib/gprintf.h> /* g_printf() */
 
#include "libintl.h"
#define _(STR) gettext(STR)
 
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif // HAVE_CONFIG_H
/nautilus-follow-symlink/trunk/src/follow-symlink.c
132,8 → 132,8
const char *name;
const char *tooltip;
 
name = _("Follow symbolic _link");
tooltip = _("Open the directory pointed by the currently selected symbolic link");
name = "-> Follow symbolic _link";
tooltip = "Open the directory pointed by the currently selected symbolic link";
 
// (name, label, tip, icon)
ret = nautilus_menu_item_new("FsymlinkExtension::follow_symlink",
/nautilus-follow-symlink/trunk/src/nautilus-ext-follow-symlink.c
1,8 → 1,5
#include "nautilus-ext-follow-symlink.h"
 
#include <locale.h>
#include <libintl.h>
 
#include <glib/gprintf.h>
 
/* Public interface */
14,10 → 11,6
TRACE();
FSL_DEBUG_INIT();
 
setlocale(LC_ALL, "");
bindtextdomain(GETTEXT_PACKAGE, GNOMELOCALEDIR);
textdomain(GETTEXT_PACKAGE);
 
g_printf("Initializing nautilus-follow-symlink extension (v.%s)\n", VERSION);
 
fsl_register_type(module);
/nautilus-follow-symlink/trunk/Makefile.am
1,26 → 1,5
 
SUBDIRS = po src
SUBDIRS = src
 
# This doesn't work as expected
libdir = @libdir@/nautilus/extensions-1.0
 
EXTRA_DIST = dist
 
# Extra files to get rid of when distcleaning
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update \
\
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
\
libtool \
libtool.m4 \
ltmain.sh \
ltoptions.m4 \
ltsugar.m4 \
ltversion.m4 \
\
po/Makefile.in.in
/nautilus-follow-symlink/trunk/BUILD
6,12 → 6,11
$ ./dist
 
* Configure
$ ./configure --prefix=/usr
$ ./configure
 
Note that this being a nautilus extension, the --prefix is not really used
at installation time as there's no real flexibility on where to install them
(the appropiate place will be checked on install time). BUT it should match
gnome's locale dir.
Note that this being a nautilus extension, the --prefix is not really needed
as there's no real flexibility on where to install them. The appropiate place
will be checked on install time.
 
* Compile
$ make
/nautilus-follow-symlink/trunk/dist
10,7 → 10,6
 
gen:
libtoolize
intltoolize
aclocal -I .
autoconf
autoheader
27,10 → 26,5
rm -f config.* depcomp install-sh missing src/config.h src/config.h.in
rm -f aclocal.m4
rm -f configure Makefile Makefile.in src/Makefile src/Makefile.in
# The following are moved thanks to Makefile.am (var DISTCLEANFILES)
# (kept for situations in which make distclean fails)
# Undo libtoolize
rm -f libtool.m4 lt*.m4 ltmain.sh libtool
# Undo intltoolize
rm -f intltool*
rm -f po/Makefile.in.in
/nautilus-follow-symlink/trunk/configure.in
1,6 → 1,6
 
AC_INIT(src/follow-symlink.c)
AM_INIT_AUTOMAKE(libnautilus-follow-symlink, "0.6.0")
AM_INIT_AUTOMAKE(libnautilus-follow-symlink, "0.5.2")
AC_CONFIG_HEADER(src/config.h)
 
dnl default FLAGS
16,14 → 16,6
AC_LANG_C
AC_PROG_CC
 
# intltool
AC_PROG_INTLTOOL(0.18)
GETTEXT_PACKAGE=nautilus-follow-symlink
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [gettext domain])
ALL_LINGUAS="ca es" dnl Implied en
AM_GLIB_GNU_GETTEXT
 
# string.h and stdlib.h are used
dnl defines STDC_HEADERS if ANSI-compliant headers are present
AC_HEADER_STDC
43,7 → 35,4
CFLAGS="$CFLAGS $GLIB_CFLAGS $NAUTILUS_EXTENSION_CFLAGS"
LIBS="$LIBS $GLIB_LIBS $NAUTILUS_EXTENSION_LIBS"
 
AC_OUTPUT([Makefile
src/Makefile
po/Makefile.in
])
AC_OUTPUT(Makefile src/Makefile)
/nautilus-follow-symlink/trunk/.
Property changes:
Modified: svn:mergeinfo
Reverse-merged /nautilus-follow-symlink/branches/0.6.0:r10