-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7043813
Showing
344 changed files
with
239,163 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Main developers: | ||
Paolo Bacchilega <[email protected]> | ||
|
||
Contributors: | ||
Claudio Bley <[email protected]> Patch to cope with systems that | ||
do not have FNM_CASEFOLD | ||
defined. | ||
Shaun McCance <[email protected]> Zoo archives support. | ||
Daniel Brodie <[email protected]> ISO images support. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
*Translations | ||
|
||
Translations can be updated without asking, just remember to add | ||
an entry in po/ChangeLog | ||
|
||
*Patches | ||
|
||
Send patches to the maintainer ([email protected]) and get | ||
approval before committing. | ||
|
||
Patches must contain a ChangeLog entry. | ||
|
||
You have to follow the style of the rest of the code even if you | ||
don't like it. The code style is K&R with 8 space tabs. | ||
|
||
*Roadmap | ||
|
||
*) src/fr-process.c : A class that lets you execute commands in | ||
sequence. You can define a command as sticky if you want that it must | ||
be executed even if a previous command has failed. | ||
|
||
*) src/fr-command.c : An abstract class used as base to define archiving | ||
utilities interfaces. For example fr-command-tar.c implements an | ||
interface for the tar command. FRCommands use a FRProcess object to | ||
execute commands. | ||
|
||
*) src/fr-archive.c : A class that implements the archive concept. An | ||
FRArchive object can load any archive type of which there is a | ||
corrisponding FRCommand interface. It adds high level operations as | ||
add_with_wildcard, add_directory, and implements options not supported | ||
by the archiving utility. For example, you can extract files from a | ||
tar archive without recreating the path even if the tar command does not | ||
support this feature. If an option is supported natively the command | ||
line option is used. | ||
|
||
*) src/window.c : Implements the window object. | ||
|
||
*) src/dlg-*.c : All files starting with dlg- implement a dialog. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Paolo Bacchilega | ||
E-mail: [email protected] | ||
Userid: paobac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
## Process this file with automake to produce Makefile.in. | ||
if ENABLE_CAJA_ACTIONS | ||
CAJA = caja | ||
else | ||
CAJA = | ||
endif | ||
|
||
SUBDIRS = \ | ||
copy-n-paste \ | ||
data \ | ||
src \ | ||
help \ | ||
$(CAJA) \ | ||
po | ||
|
||
distcleancheck_listfiles = find . -type f -print | grep -v 'omf\.out' | ||
|
||
distuninstallcheck_listfiles = find . -type f -print | grep -v '^\./var/scrollkeeper' | grep -v 'omf' | grep -v 'figures' | ||
|
||
|
||
EXTRA_DIST = \ | ||
AUTHORS \ | ||
HACKING \ | ||
MAINTAINERS \ | ||
NEWS \ | ||
README \ | ||
file-roller.spec \ | ||
file-roller.spec.in \ | ||
intltool-merge.in \ | ||
intltool-update.in \ | ||
intltool-extract.in \ | ||
mate-doc-utils.make | ||
|
||
DISTCLEANFILES = \ | ||
mate-doc-utils.make \ | ||
po/.intltool-merge-cache \ | ||
intltool-extract \ | ||
intltool-merge \ | ||
intltool-update | ||
|
||
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper | ||
|
||
MAINTAINERCLEANFILES = \ | ||
$(srcdir)/INSTALL \ | ||
$(srcdir)/aclocal.m4 \ | ||
$(srcdir)/autoscan.log \ | ||
$(srcdir)/compile \ | ||
$(srcdir)/config.guess \ | ||
$(srcdir)/config.h.in \ | ||
$(srcdir)/config.sub \ | ||
$(srcdir)/configure.scan \ | ||
$(srcdir)/depcomp \ | ||
$(srcdir)/install-sh \ | ||
$(srcdir)/ltmain.sh \ | ||
$(srcdir)/m4 \ | ||
$(srcdir)/missing \ | ||
$(srcdir)/mkinstalldirs \ | ||
$(srcdir)/omf.make \ | ||
$(srcdir)/xmldocs.make \ | ||
$(srcdir)/gtk-doc.make \ | ||
$(srcdir)/ChangeLog \ | ||
`find "$(srcdir)" -type f -name Makefile.in -print` | ||
|
||
GITIGNOREFILES = build .cdt* .cproject .project .settings/ | ||
|
||
CLEANFILES = ChangeLog | ||
|
||
# Build ChangeLog from GIT history | ||
ChangeLog: | ||
@echo Creating $@ | ||
@if test -d $(top_srcdir)/.git; then \ | ||
(GIT_DIR=$(top_srcdir)/.git $(top_srcdir)/missing --run git log --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \ | ||
&& mv -f $@.tmp $@ \ | ||
|| ($(RM) $@.tmp; \ | ||
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ | ||
(test -f $@ || echo git-log is required to generate this file >> $@)); \ | ||
else \ | ||
test -f $@ || \ | ||
(echo A git checkout and git-log is required to generate ChangeLog >&2 && \ | ||
echo A git checkout and git-log is required to generate this file >> $@); \ | ||
fi | ||
|
||
dist: ChangeLog | ||
|
||
.PHONY: ChangeLog | ||
|
||
-include $(top_srcdir)/git.mk |
Oops, something went wrong.