From 0c774c7faccb294a418c3b71ecb63d8914a66761 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Fri, 22 Oct 2010 12:57:06 +0200 Subject: First try --- Makefile.am | 4 +++ antigen.sh | 9 ++++++ autogen.sh | 7 +++++ configure.ac | 53 +++++++++++++++++++++++++++++++++++ data/Makefile.am | 6 ++++ data/eye-on-manga.desktop | 9 ++++++ data/icons/64x64/eye-on-manga.png | Bin 0 -> 4383 bytes data/icons/scalable/eye-on-manga.png | Bin 0 -> 4383 bytes src/Makefile | 18 ------------ src/Makefile.am | 13 +++++++++ src/Makefile.orig | 18 ++++++++++++ 11 files changed, 119 insertions(+), 18 deletions(-) create mode 100644 Makefile.am create mode 100755 antigen.sh create mode 100755 autogen.sh create mode 100644 configure.ac create mode 100644 data/Makefile.am create mode 100644 data/eye-on-manga.desktop create mode 100644 data/icons/64x64/eye-on-manga.png create mode 100644 data/icons/scalable/eye-on-manga.png delete mode 100644 src/Makefile create mode 100644 src/Makefile.am create mode 100644 src/Makefile.orig diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..9093308 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,4 @@ +EXTRA_DIST = \ + autogen.sh + +SUBDIRS = src data diff --git a/antigen.sh b/antigen.sh new file mode 100755 index 0000000..8583cd4 --- /dev/null +++ b/antigen.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +if test -f Makefile; then + make distclean +fi + +rm -f *.tar.* *.tgz +rm -Rf autom4te.cache +rm -f src/Makefile.in Makefile.in aclocal.m4 configure depcomp install-sh missing build-stamp configure-stamp diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..afd87cb --- /dev/null +++ b/autogen.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +set -x +aclocal-1.7 +autoconf --force +autoheader --force +automake-1.7 --add-missing --copy --force-missing --foreign diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..0475ec1 --- /dev/null +++ b/configure.ac @@ -0,0 +1,53 @@ +AC_INIT(Makefile.am) +AM_INIT_AUTOMAKE(eye-on-manga, 0.1) +AM_CONFIG_HEADER(config.h) + +AC_PROG_CC +AC_PROG_INSTALL +AC_HEADER_STDC + +# Option to enable debugging +AC_ARG_ENABLE(debug, + [AC_HELP_STRING([ --enable-debug], [Debugging (default=no)])], + [with_debug=yes], [with_debug=no]) + +if test "x$with_debug" == "xyes" ; then + CFLAGS="$CFLAGS -ggdb -O0 -DDEBUG -Wall " +else + CFLAGS="$CFLAGS -O2 -Wall " +fi + +# Hildon library dependencies +PKG_CHECK_MODULES(HILDON, hildon-1) +AC_SUBST(HILDON_LIBS) +AC_SUBST(HILDON_CFLAGS) + +# To make the application visible in maemo Task Navigator it needs a Desktop +# file for the application. +desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir` + +# Application pixmaps install directory +pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir` + +# Application icon install directories +icon_26x26dir=$datadir/icons/hicolor/26x26/hildon +icon_34x34dir=$datadir/icons/hicolor/34x34/hildon +icon_40x40dir=$datadir/icons/hicolor/40x40/hildon +icon_50x50dir=$datadir/icons/hicolor/50x50/hildon +icon_scalabledir=$datadir/icons/hicolor/scalable/hildon + +# Define as variables in Makefile +AC_SUBST(desktopentrydir) +AC_SUBST(pixmapdir) +AC_SUBST(icon_26x26dir) +AC_SUBST(icon_34x34dir) +AC_SUBST(icon_40x40dir) +AC_SUBST(icon_50x50dir) +AC_SUBST(icon_scalabledir) + +AC_DEFINE_UNQUOTED([PIXMAPDIR], "${pixmapdir}", [Runtime pixmap files path]) +AC_OUTPUT( + Makefile \ + src\Makefile \ + data\Makefile +) diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..696696c --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1,6 @@ +desktopentry_DATA = eye-on-manga.desktop + +icon_48x48_DATA = icons/48x48/eye-on-manga.png +icon_scalable_DATA = icons/scalable/eye-on-manga.png + +EXTRA_DIST = $(desktopentry_DATA) $(icon_48x48_DATA) $(icon_scalable_DATA) diff --git a/data/eye-on-manga.desktop b/data/eye-on-manga.desktop new file mode 100644 index 0000000..92ae14e --- /dev/null +++ b/data/eye-on-manga.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=0.1 +Type=Application +Name=Eye on Manga +Exec=/usr/bin/eye-on-manga +Icon=eye-on-manga +X-Window-Icon=eye-on-manga +X-Window-Icon-Dimmed=eye-on-manga diff --git a/data/icons/64x64/eye-on-manga.png b/data/icons/64x64/eye-on-manga.png new file mode 100644 index 0000000..5d62067 Binary files /dev/null and b/data/icons/64x64/eye-on-manga.png differ diff --git a/data/icons/scalable/eye-on-manga.png b/data/icons/scalable/eye-on-manga.png new file mode 100644 index 0000000..5d62067 Binary files /dev/null and b/data/icons/scalable/eye-on-manga.png differ diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 8b0c154..0000000 --- a/src/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -CFLAGS=`pkg-config hildon-1 sqlite3 --cflags --libs` - -all: - $(CC) -Wall -pedantic \ - eom.c \ - interface.c \ - eom-main-window.c \ - eom-edit-window.c \ - eom-new-item-dialog.c \ - data.c \ - $(CFLAGS) \ - -o eye-on-manga - -.PHONY: check-syntax -check-syntax: - /scratchbox/login $(CC) -pedantic -Wall -Wextra -fsyntax-only \ - `readlink -f $(CHK_SOURCES)` \ - `/scratchbox/login pkg-config hildon-1 sqlite3 --cflags --libs` diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..afdd933 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,13 @@ +bin_PROGRAMS = eye-on-manga + +eye-on-manga_LDADD = $(HILDON_LIBS) + +eye-on-manga_CFLAGS = $(HILDON_CFLAGS) + +eye-on-manga_SOURCES = \ + data.c data.h \ + eom.c eom.h \ + eom-edit-window.c eom-edit-window.h \ + eom-main-window.c eom-main-window.h \ + eom-new-item-dialog.c eom-new-item-dialog.h \ + interface.c interface.h diff --git a/src/Makefile.orig b/src/Makefile.orig new file mode 100644 index 0000000..8b0c154 --- /dev/null +++ b/src/Makefile.orig @@ -0,0 +1,18 @@ +CFLAGS=`pkg-config hildon-1 sqlite3 --cflags --libs` + +all: + $(CC) -Wall -pedantic \ + eom.c \ + interface.c \ + eom-main-window.c \ + eom-edit-window.c \ + eom-new-item-dialog.c \ + data.c \ + $(CFLAGS) \ + -o eye-on-manga + +.PHONY: check-syntax +check-syntax: + /scratchbox/login $(CC) -pedantic -Wall -Wextra -fsyntax-only \ + `readlink -f $(CHK_SOURCES)` \ + `/scratchbox/login pkg-config hildon-1 sqlite3 --cflags --libs` -- cgit v1.2.3-54-g00ecf From ad9ed8ffafdc44c6acbdbfadb1cd70ba38416d46 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Mon, 25 Oct 2010 22:57:25 +0200 Subject: Compiles with automake --- Makefile.am | 2 +- autogen.sh | 9 ++++----- configure.ac | 57 ++++++++++----------------------------------------------- src/Makefile.am | 6 +----- 4 files changed, 16 insertions(+), 58 deletions(-) diff --git a/Makefile.am b/Makefile.am index 9093308..74e4baf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ EXTRA_DIST = \ autogen.sh -SUBDIRS = src data +SUBDIRS = src diff --git a/autogen.sh b/autogen.sh index afd87cb..b76768c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,7 +1,6 @@ #!/bin/sh -set -x -aclocal-1.7 -autoconf --force -autoheader --force -automake-1.7 --add-missing --copy --force-missing --foreign +aclocal +automake -ac +autoconf +echo "Ready to go (run configure)" diff --git a/configure.ac b/configure.ac index 0475ec1..d057996 100644 --- a/configure.ac +++ b/configure.ac @@ -1,53 +1,16 @@ AC_INIT(Makefile.am) -AM_INIT_AUTOMAKE(eye-on-manga, 0.1) -AM_CONFIG_HEADER(config.h) +AM_INIT_AUTOMAKE(eye-on-manga, 0.0.1) AC_PROG_CC AC_PROG_INSTALL -AC_HEADER_STDC -# Option to enable debugging -AC_ARG_ENABLE(debug, - [AC_HELP_STRING([ --enable-debug], [Debugging (default=no)])], - [with_debug=yes], [with_debug=no]) - -if test "x$with_debug" == "xyes" ; then - CFLAGS="$CFLAGS -ggdb -O0 -DDEBUG -Wall " -else - CFLAGS="$CFLAGS -O2 -Wall " -fi - -# Hildon library dependencies -PKG_CHECK_MODULES(HILDON, hildon-1) -AC_SUBST(HILDON_LIBS) -AC_SUBST(HILDON_CFLAGS) - -# To make the application visible in maemo Task Navigator it needs a Desktop -# file for the application. -desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir` - -# Application pixmaps install directory -pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir` - -# Application icon install directories -icon_26x26dir=$datadir/icons/hicolor/26x26/hildon -icon_34x34dir=$datadir/icons/hicolor/34x34/hildon -icon_40x40dir=$datadir/icons/hicolor/40x40/hildon -icon_50x50dir=$datadir/icons/hicolor/50x50/hildon -icon_scalabledir=$datadir/icons/hicolor/scalable/hildon - -# Define as variables in Makefile -AC_SUBST(desktopentrydir) -AC_SUBST(pixmapdir) -AC_SUBST(icon_26x26dir) -AC_SUBST(icon_34x34dir) -AC_SUBST(icon_40x40dir) -AC_SUBST(icon_50x50dir) -AC_SUBST(icon_scalabledir) - -AC_DEFINE_UNQUOTED([PIXMAPDIR], "${pixmapdir}", [Runtime pixmap files path]) -AC_OUTPUT( - Makefile \ - src\Makefile \ - data\Makefile +# Check for necessary packages +PKG_CHECK_MODULES(EOM, hildon-1 sqlite3) +# Add packages to flags and libs +CFLAGS="$EOM_CFLAGS $CFLAGS" +LIBS="$EOM_LIBS $LIBS" +# Generate the Makefile from Makefile.in +AC_OUTPUT( \ + Makefile \ + src/Makefile ) diff --git a/src/Makefile.am b/src/Makefile.am index afdd933..18afa27 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,10 +1,6 @@ bin_PROGRAMS = eye-on-manga -eye-on-manga_LDADD = $(HILDON_LIBS) - -eye-on-manga_CFLAGS = $(HILDON_CFLAGS) - -eye-on-manga_SOURCES = \ +eye_on_manga_SOURCES = \ data.c data.h \ eom.c eom.h \ eom-edit-window.c eom-edit-window.h \ -- cgit v1.2.3-54-g00ecf From 10ac8429513186e5e396167dcdb7459fa3932525 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Mon, 25 Oct 2010 23:18:15 +0200 Subject: Makes using automake it can be built and installed --- COPYING | 340 +++++++++++++++++++++++++++++++++++ INSTALL | 229 +++++++++++++++++++++++ Makefile.am | 2 +- antigen.sh | 2 +- configure.ac | 18 +- data/Makefile.am | 6 +- data/eye-on-manga.desktop | 3 +- data/icons/26x26/eye-on-manga.png | Bin 0 -> 1819 bytes data/icons/40x40/eye-on-manga.png | Bin 0 -> 3389 bytes data/icons/64x64/eye-on-manga.png | Bin 4383 -> 6335 bytes data/icons/scalable/eye-on-manga.png | Bin 4383 -> 16197 bytes 11 files changed, 594 insertions(+), 6 deletions(-) create mode 100644 COPYING create mode 100644 INSTALL create mode 100644 data/icons/26x26/eye-on-manga.png create mode 100644 data/icons/40x40/eye-on-manga.png diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..d60c31a --- /dev/null +++ b/COPYING @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..54caf7c --- /dev/null +++ b/INSTALL @@ -0,0 +1,229 @@ +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software +Foundation, Inc. + + This file is free documentation; the Free Software Foundation gives +unlimited permission to copy, distribute and modify it. + +Basic Installation +================== + + These are generic installation instructions. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. (Caching is +disabled by default to prevent problems with accidental use of stale +cache files.) + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You only need +`configure.ac' if you want to change it or regenerate `configure' using +a newer version of `autoconf'. + +The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. If you're + using `csh' on an old version of System V, you might need to type + `sh ./configure' instead to prevent `csh' from trying to execute + `configure' itself. + + Running `configure' takes awhile. While running, it prints some + messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package. + + 4. Type `make install' to install the programs and any data files and + documentation. + + 5. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + +Compilers and Options +===================== + + Some systems require unusual options for compilation or linking that +the `configure' script does not know about. Run `./configure --help' +for details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + + You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you must use a version of `make' that +supports the `VPATH' variable, such as GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. + + If you have to use a `make' that does not support the `VPATH' +variable, you have to compile the package for one architecture at a +time in the source code directory. After you have installed the +package for one architecture, use `make distclean' before reconfiguring +for another architecture. + +Installation Names +================== + + By default, `make install' will install the package's files in +`/usr/local/bin', `/usr/local/man', etc. You can specify an +installation prefix other than `/usr/local' by giving `configure' the +option `--prefix=PATH'. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +give `configure' the option `--exec-prefix=PATH', the package will use +PATH as the prefix for installing programs and libraries. +Documentation and other data files will still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=PATH' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + +Optional Features +================= + + Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + +Specifying the System Type +========================== + + There may be some features `configure' cannot figure out +automatically, but needs to determine by the type of machine the package +will run on. Usually, assuming the package is built to be run on the +_same_ architectures, `configure' can figure that out, but if it prints +a message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the `--target=TYPE' option to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + + If you want to set default values for `configure' scripts to share, +you can create a site shell script called `config.site' that gives +default values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + + Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +will cause the specified gcc to be used as the C compiler (unless it is +overridden in the site shell script). + +`configure' Invocation +====================== + + `configure' recognizes the following options to control how it +operates. + +`--help' +`-h' + Print a summary of the options to `configure', and exit. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. + diff --git a/Makefile.am b/Makefile.am index 74e4baf..9093308 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ EXTRA_DIST = \ autogen.sh -SUBDIRS = src +SUBDIRS = src data diff --git a/antigen.sh b/antigen.sh index 8583cd4..3f7ce19 100755 --- a/antigen.sh +++ b/antigen.sh @@ -6,4 +6,4 @@ fi rm -f *.tar.* *.tgz rm -Rf autom4te.cache -rm -f src/Makefile.in Makefile.in aclocal.m4 configure depcomp install-sh missing build-stamp configure-stamp +rm -f src/Makefile.in data/Makefile.in Makefile.in aclocal.m4 configure depcomp install-sh missing build-stamp configure-stamp diff --git a/configure.ac b/configure.ac index d057996..a0de51e 100644 --- a/configure.ac +++ b/configure.ac @@ -9,8 +9,24 @@ PKG_CHECK_MODULES(EOM, hildon-1 sqlite3) # Add packages to flags and libs CFLAGS="$EOM_CFLAGS $CFLAGS" LIBS="$EOM_LIBS $LIBS" + +desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir` + +# Application icon install directories +icon_26x26dir=$datadir/icons/hicolor/26x26/hildon +icon_40x40dir=$datadir/icons/hicolor/40x40/hildon +icon_64x64dir=$datadir/icons/hicolor/64x64/hildon +icon_scalabledir=$datadir/icons/hicolor/scalable/hildon + +AC_SUBST(desktopentrydir) +AC_SUBST(icon_26x26dir) +AC_SUBST(icon_40x40dir) +AC_SUBST(icon_64x64dir) +AC_SUBST(icon_scalabledir) + # Generate the Makefile from Makefile.in AC_OUTPUT( \ Makefile \ - src/Makefile + src/Makefile \ + data/Makefile ) diff --git a/data/Makefile.am b/data/Makefile.am index 696696c..078a5ee 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,6 +1,8 @@ desktopentry_DATA = eye-on-manga.desktop -icon_48x48_DATA = icons/48x48/eye-on-manga.png +icon_26x26_DATA = icons/26x26/eye-on-manga.png +icon_40x40_DATA = icons/40x40/eye-on-manga.png +icon_64x64_DATA = icons/64x64/eye-on-manga.png icon_scalable_DATA = icons/scalable/eye-on-manga.png -EXTRA_DIST = $(desktopentry_DATA) $(icon_48x48_DATA) $(icon_scalable_DATA) +EXTRA_DIST = $(desktopentry_DATA) $(icon_26x26_DATA) $(icon_40x40_DATA) $(icon_64x64_DATA) $(icon_scalable_DATA) diff --git a/data/eye-on-manga.desktop b/data/eye-on-manga.desktop index 92ae14e..b993a5e 100644 --- a/data/eye-on-manga.desktop +++ b/data/eye-on-manga.desktop @@ -3,7 +3,8 @@ Encoding=UTF-8 Version=0.1 Type=Application Name=Eye on Manga -Exec=/usr/bin/eye-on-manga +Exec=/usr/local/bin/eye-on-manga Icon=eye-on-manga X-Window-Icon=eye-on-manga X-Window-Icon-Dimmed=eye-on-manga +X-Osso-Type=application/x-executable diff --git a/data/icons/26x26/eye-on-manga.png b/data/icons/26x26/eye-on-manga.png new file mode 100644 index 0000000..ed09199 Binary files /dev/null and b/data/icons/26x26/eye-on-manga.png differ diff --git a/data/icons/40x40/eye-on-manga.png b/data/icons/40x40/eye-on-manga.png new file mode 100644 index 0000000..7085af4 Binary files /dev/null and b/data/icons/40x40/eye-on-manga.png differ diff --git a/data/icons/64x64/eye-on-manga.png b/data/icons/64x64/eye-on-manga.png index 5d62067..523acd7 100644 Binary files a/data/icons/64x64/eye-on-manga.png and b/data/icons/64x64/eye-on-manga.png differ diff --git a/data/icons/scalable/eye-on-manga.png b/data/icons/scalable/eye-on-manga.png index 5d62067..392c140 100644 Binary files a/data/icons/scalable/eye-on-manga.png and b/data/icons/scalable/eye-on-manga.png differ -- cgit v1.2.3-54-g00ecf From 5368f569969a16ac95eeda8f6d682dc7c0e31f29 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Thu, 28 Oct 2010 23:51:06 +0200 Subject: Created files for packaging as .deb --- debian/README.Debian | 6 ++ debian/changelog | 6 ++ debian/compat | 1 + debian/control | 54 ++++++++++++++ debian/copyright | 22 ++++++ debian/cron.d.ex | 4 ++ debian/dirs | 2 + debian/docs | 0 debian/emacsen-install.ex | 45 ++++++++++++ debian/emacsen-remove.ex | 15 ++++ debian/emacsen-startup.ex | 25 +++++++ debian/eye-on-manga-default.ex | 10 +++ debian/eye-on-manga.doc-base.EX | 22 ++++++ debian/eye-on-manga.substvars | 1 + debian/files | 1 + debian/init.d.ex | 81 +++++++++++++++++++++ debian/manpage.1.ex | 59 +++++++++++++++ debian/manpage.sgml.ex | 156 ++++++++++++++++++++++++++++++++++++++++ debian/manpage.xml.ex | 148 ++++++++++++++++++++++++++++++++++++++ debian/menu.ex | 2 + debian/postinst.ex | 41 +++++++++++ debian/postrm.ex | 39 ++++++++++ debian/preinst.ex | 37 ++++++++++ debian/prerm.ex | 40 +++++++++++ debian/rules | 98 +++++++++++++++++++++++++ debian/watch.ex | 22 ++++++ 26 files changed, 937 insertions(+) create mode 100644 debian/README.Debian create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/cron.d.ex create mode 100644 debian/dirs create mode 100644 debian/docs create mode 100644 debian/emacsen-install.ex create mode 100644 debian/emacsen-remove.ex create mode 100644 debian/emacsen-startup.ex create mode 100644 debian/eye-on-manga-default.ex create mode 100644 debian/eye-on-manga.doc-base.EX create mode 100644 debian/eye-on-manga.substvars create mode 100644 debian/files create mode 100644 debian/init.d.ex create mode 100644 debian/manpage.1.ex create mode 100644 debian/manpage.sgml.ex create mode 100644 debian/manpage.xml.ex create mode 100644 debian/menu.ex create mode 100644 debian/postinst.ex create mode 100644 debian/postrm.ex create mode 100644 debian/preinst.ex create mode 100644 debian/prerm.ex create mode 100755 debian/rules create mode 100644 debian/watch.ex diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..604f3e7 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,6 @@ +eye-on-manga for Debian +----------------------- + + + + -- Tom Willemsen Thu, 28 Oct 2010 23:27:59 +0200 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..6b0ce3d --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +eye-on-manga (0.0.1-1) unstable; urgency=low + + * Initial release (Closes: #nnnn) + + -- Tom Willemsen Thu, 28 Oct 2010 23:27:59 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..5307c8a --- /dev/null +++ b/debian/control @@ -0,0 +1,54 @@ +Source: eye-on-manga +Section: user/other +Priority: optional +Maintainer: Tom Willemsen +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: eye-on-manga +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: A manga collection application + Keep track of which manga volumes you have and which you still need to get. +XB-Maemo-Icon-26: + iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0 + d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABr1JREFUeNqUVmtsHNUV/u7M + 7Mzsyx57/Uy88caOH4K8gAByeMhJSoBAWwsaEaKWpAVVqkTaiKhVJSSSH/CD + hxDPHyCQCKqqKoDkqFVVkECukkIDoXFIAgkWySbx2t7Y+37OzM7cnrnrOLzC + 42qv7u7snfud851zvnMZvmc8P/D7bYA6DGjDDHIMUOipKyaHEwfMMcAa3XHq + uf3fdQ77DoA/AA07JR6K6Q0htA62IkJTa9DF/2a+itTJWczRrOTzcFmJQAt7 + CHDvDwIigG6yflTiTav7Nq3E8ntXCgAy/7Jj+nACE/84iYl/HoXD0uShPUKA + ucsCEcgqIDzmD7QZNz68Hu2rOiHJErjrgklEnE8W+xyzRsC8js2YMML7njw6 + jYOPvYdKOZEFqsMEdvQbQHVPwuMKbzauvn8NojfFICsSJImiYTliowfmC2tQ + GjS41RrskgWHVu4BCWCGcwfiOPLqYdgs6YHFLnqmXPJHG1W4Yfhou9FtwJwr + QqNDrZJNLtSBFL8PjLxTG3X4owZqZRvlRA5OxUbNclGrWNCDPviEi62GzWZG + 6bV1Cx55gZf4omdU2nKy9BmyvRVMVqZxoTCHqeQ0GHnGhGuUaW6dMklmiC5Z + gvZwC3THh2WLetAf60OwrMN9v4xSwYLJqxSz5HYvQQTQE8seyhzKTRj/yf0X + VdckuhiUgA+ypsCtUSo7BODwSzyz+djQR9LJfvrfo9czwa060KDiT7HfIcAb + YLF0/MFTjy1lXp2cLOZfc1wHBwhoykoKayVVEevijkWYPH/+27PHA/PiqJNB + plNPEhrCa5ouzR1d29CmsRHiQx1ZEVyBZqUR9ANRtV1YzzvDeOSFJ/HB2EE8 + /fhT4DZ5VnOF9V+eoKRxyavNd/0Cy6+8EoyyVFBN668HtiDq74GHQWf7h023 + iv2pt3Ffy08RkDQgqIJt6MUDt24WFt6zdQveevMNDF17PZVIHVAEyku3EO2/ + ZRm6OhfhoV27IIl4MuwcfgAb+m+E5leIBW2YHjHjcGEcv2z9mfBGjN5mUT9T + udkFloaGhrCWpggPnc+IFkbUaZDBQiocOilfyAtP7t+4Fbev2QCVDFYEkBxT + GHTc3Hg9NLKOcbceg44QdFXD7peewhVKG04cP4HbNm7Evn37sCAR8/FpCIWR + 5g6QN3H8f0dx1x0/x2/Xb0P2TFp4JjFRGF+uo/q79ZXBr+uYmJnEv/72V0HR + O++8LbJvYSjkCWWlzmWQtXCKJvySD3/etQeZY9OikL1MdOdpVjiqXrEKS70X + BwMxfF5LkLEymqIREVi4vK7Y3DvR2050qDI4ZVmgMQxpahIru3pw9cBqFE/N + iowzsxVYBRM2FTUF1Us0nuXzhDgU6KGea8CyVGiU7mozqXZ/lIqF1Sd5yohz + oyOCV158CXv3vo6GSBP8GQdXoBOl0ylkxhOwixbKySIqqTJqZAxnTlziKI/V + uwujwznarSa0pmQqXBtFp4o12+5EU1d7Pcm81NV8GFzci1tvvw3rb7gZbQED + m+a6UTydRuGLFHLUNgpnMqhmqqhkKnCE4JpjFCN71CVZdxgVHVFjEbe/Cq3H + c2c/RioQRoAyat3Orch8eh6FTAaP/mYXVFXFXDGHszMJHNr/Lu5JLsVMbQqq + LwiLTiZxQCVXFYa5NZNMtDwgjLosn/13dsKwnQrCVEd9zVGs/TCIQ+EZ8CYb + pmWhuS+CNqkDkyigz4hiy8sP4/zBY4h+VMaz1b+j5cIB3Nv8E6wIDsCcKUAi + QZZ1F046FV/QOpKh3TLv3OOJ6gVzGmcqcRwrf44v9CRYbwtCvR1o7G6Hz+Ko + ZUsoT6WQ/+Qc7EyprhBEz7qu63Bf4yaYFOeG5Z0gMUfikzhsPnNJVOtgfzzi + 4x2rPYlX6U2F1kh/BEfSn+KD04fxcfYzlChmTDS6+VoiLWzxGWhRDGxfcTeW + Le1HeLANmXgW8ffjqNrT4ztOPXnV1/qRub3GUmOMR4yLZ2XO5XDNwCoMlhdj + c3AdEs4sUTeHJjtAUqULJdFoDfZE0LI2hkB3E0785QhyyRLRfSELZo5ctpUz + hMYUAlMp8WXqP35qcmQaOE3fvEp7deLvCCO4xEBkTRdsejZ7PInER5OokT7Z + yFDJFL+9lX/13qC9prDIal0PQKO+pGqyAPGmQlOPBEV9VNJl5M5mUSX5cURZ + Uqdl6XFix7ucnP2h163d5N1OmYcNmTJRpUL1WoVr1Rb2uHU9IRC6O6CQ5azo + Xbee/VH3unmwRlqIZ98Iqd8w45LBhFyJIqSKd4miine9Gr3cfe7i+L8AAwBi + XBblNZsegQAAAABJRU5ErkJggg== diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..cf09222 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,22 @@ +This package was debianized by Tom Willemsen on +Thu, 28 Oct 2010 23:27:59 +0200. + +It was downloaded from + +Upstream Author: + +Copyright: + +License: + + + + +The Debian packaging is (C) 2010, Tom Willemsen and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. + diff --git a/debian/cron.d.ex b/debian/cron.d.ex new file mode 100644 index 0000000..f3181f0 --- /dev/null +++ b/debian/cron.d.ex @@ -0,0 +1,4 @@ +# +# Regular cron jobs for the eye-on-manga package +# +0 4 * * * root eye-on-manga_maintenance diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..ca882bb --- /dev/null +++ b/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e69de29 diff --git a/debian/emacsen-install.ex b/debian/emacsen-install.ex new file mode 100644 index 0000000..1aa45ab --- /dev/null +++ b/debian/emacsen-install.ex @@ -0,0 +1,45 @@ +#! /bin/sh -e +# /usr/lib/emacsen-common/packages/install/eye-on-manga + +# Written by Jim Van Zandt , borrowing heavily +# from the install scripts for gettext by Santiago Vila +# and octave by Dirk Eddelbuettel . + +FLAVOR=$1 +PACKAGE=eye-on-manga + +if [ ${FLAVOR} = emacs ]; then exit 0; fi + +echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR} + +#FLAVORTEST=`echo $FLAVOR | cut -c-6` +#if [ ${FLAVORTEST} = xemacs ] ; then +# SITEFLAG="-no-site-file" +#else +# SITEFLAG="--no-site-file" +#fi +FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile" + +ELDIR=/usr/share/emacs/site-lisp/${PACKAGE} +ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} + +# Install-info-altdir does not actually exist. +# Maybe somebody will write it. +if test -x /usr/sbin/install-info-altdir; then + echo install/${PACKAGE}: install Info links for ${FLAVOR} + install-info-altdir --quiet --section "" "" --dirname=${FLAVOR} /usr/info/${PACKAGE}.info.gz +fi + +install -m 755 -d ${ELCDIR} +cd ${ELDIR} +FILES=`echo *.el` +cp ${FILES} ${ELCDIR} +cd ${ELCDIR} + +cat << EOF > path.el +(setq load-path (cons "." load-path) byte-compile-warnings nil) +EOF +${FLAVOR} ${FLAGS} ${FILES} +rm -f *.el path.el + +exit 0 diff --git a/debian/emacsen-remove.ex b/debian/emacsen-remove.ex new file mode 100644 index 0000000..776ee0c --- /dev/null +++ b/debian/emacsen-remove.ex @@ -0,0 +1,15 @@ +#!/bin/sh -e +# /usr/lib/emacsen-common/packages/remove/eye-on-manga + +FLAVOR=$1 +PACKAGE=eye-on-manga + +if [ ${FLAVOR} != emacs ]; then + if test -x /usr/sbin/install-info-altdir; then + echo remove/${PACKAGE}: removing Info links for ${FLAVOR} + install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/info/eye-on-manga.info.gz + fi + + echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR} + rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE} +fi diff --git a/debian/emacsen-startup.ex b/debian/emacsen-startup.ex new file mode 100644 index 0000000..a0e609e --- /dev/null +++ b/debian/emacsen-startup.ex @@ -0,0 +1,25 @@ +;; -*-emacs-lisp-*- +;; +;; Emacs startup file, e.g. /etc/emacs/site-start.d/50eye-on-manga.el +;; for the Debian eye-on-manga package +;; +;; Originally contributed by Nils Naumann +;; Modified by Dirk Eddelbuettel +;; Adapted for dh-make by Jim Van Zandt + +;; The eye-on-manga package follows the Debian/GNU Linux 'emacsen' policy and +;; byte-compiles its elisp files for each 'emacs flavor' (emacs19, +;; xemacs19, emacs20, xemacs20...). The compiled code is then +;; installed in a subdirectory of the respective site-lisp directory. +;; We have to add this to the load-path: +(let ((package-dir (concat "/usr/share/" + (symbol-name flavor) + "/site-lisp/eye-on-manga"))) +;; If package-dir does not exist, the eye-on-manga package must have +;; removed but not purged, and we should skip the setup. + (when (file-directory-p package-dir) + (setq load-path (cons package-dir load-path)) + (autoload 'eye-on-manga-mode "eye-on-manga-mode" + "Major mode for editing eye-on-manga files." t) + (add-to-list 'auto-mode-alist '("\\.eye-on-manga$" . eye-on-manga-mode)))) + diff --git a/debian/eye-on-manga-default.ex b/debian/eye-on-manga-default.ex new file mode 100644 index 0000000..c61b7fa --- /dev/null +++ b/debian/eye-on-manga-default.ex @@ -0,0 +1,10 @@ +# Defaults for eye-on-manga initscript +# sourced by /etc/init.d/eye-on-manga +# installed at /etc/default/eye-on-manga by the maintainer scripts + +# +# This is a POSIX shell fragment +# + +# Additional options that are passed to the Daemon. +DAEMON_OPTS="" diff --git a/debian/eye-on-manga.doc-base.EX b/debian/eye-on-manga.doc-base.EX new file mode 100644 index 0000000..7492b7e --- /dev/null +++ b/debian/eye-on-manga.doc-base.EX @@ -0,0 +1,22 @@ +Document: eye-on-manga +Title: Debian eye-on-manga Manual +Author: +Abstract: This manual describes what eye-on-manga is + and how it can be used to + manage online manuals on Debian systems. +Section: unknown + +Format: debiandoc-sgml +Files: /usr/share/doc/eye-on-manga/eye-on-manga.sgml.gz + +Format: postscript +Files: /usr/share/doc/eye-on-manga/eye-on-manga.ps.gz + +Format: text +Files: /usr/share/doc/eye-on-manga/eye-on-manga.text.gz + +Format: HTML +Index: /usr/share/doc/eye-on-manga/html/index.html +Files: /usr/share/doc/eye-on-manga/html/*.html + + diff --git a/debian/eye-on-manga.substvars b/debian/eye-on-manga.substvars new file mode 100644 index 0000000..51ca1a9 --- /dev/null +++ b/debian/eye-on-manga.substvars @@ -0,0 +1 @@ +shlibs:Depends=libatk1.0-0 (>= 1.24.0), libc6 (>= 2.5.0-1), libcairo2, libfontconfig1 (>= 2.6.0), libfreetype6 (>= 2.3.9), libglib2.0-0 (>= 2.20.0), libgtk2.0-0 (>= 2:2.12.9-0osso1), libhildon1 (>= 2.2.18), libpango1.0-0, libsqlite3-0 (>= 3.6.14) diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..3f7d59d --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +eye-on-manga_0.0.1-1_i386.deb user/other optional diff --git a/debian/init.d.ex b/debian/init.d.ex new file mode 100644 index 0000000..7b5f896 --- /dev/null +++ b/debian/init.d.ex @@ -0,0 +1,81 @@ +#! /bin/sh +# +# skeleton example file to build /etc/init.d/ scripts. +# This file should be used to construct scripts for /etc/init.d. +# +# Written by Miquel van Smoorenburg . +# Modified for Debian +# by Ian Murdock . +# +# Version: @(#)skeleton 1.9 26-Feb-2001 miquels@cistron.nl +# + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/sbin/eye-on-manga +NAME=eye-on-manga +DESC=eye-on-manga + +test -x $DAEMON || exit 0 + +# Include eye-on-manga defaults if available +if [ -f /etc/default/eye-on-manga ] ; then + . /etc/default/eye-on-manga +fi + +set -e + +case "$1" in + start) + echo -n "Starting $DESC: " + start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \ + --exec $DAEMON -- $DAEMON_OPTS + echo "$NAME." + ;; + stop) + echo -n "Stopping $DESC: " + start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \ + --exec $DAEMON + echo "$NAME." + ;; + #reload) + # + # If the daemon can reload its config files on the fly + # for example by sending it SIGHUP, do it here. + # + # If the daemon responds to changes in its config file + # directly anyway, make this a do-nothing entry. + # + # echo "Reloading $DESC configuration files." + # start-stop-daemon --stop --signal 1 --quiet --pidfile \ + # /var/run/$NAME.pid --exec $DAEMON + #;; + force-reload) + # + # If the "reload" option is implemented, move the "force-reload" + # option to the "reload" entry above. If not, "force-reload" is + # just the same as "restart" except that it does nothing if the + # daemon isn't already running. + # check wether $DAEMON is running. If so, restart + start-stop-daemon --stop --test --quiet --pidfile \ + /var/run/$NAME.pid --exec $DAEMON \ + && $0 restart \ + || exit 0 + ;; + restart) + echo -n "Restarting $DESC: " + start-stop-daemon --stop --quiet --pidfile \ + /var/run/$NAME.pid --exec $DAEMON + sleep 1 + start-stop-daemon --start --quiet --pidfile \ + /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS + echo "$NAME." + ;; + *) + N=/etc/init.d/$NAME + # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2 + echo "Usage: $N {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/debian/manpage.1.ex b/debian/manpage.1.ex new file mode 100644 index 0000000..2ab2840 --- /dev/null +++ b/debian/manpage.1.ex @@ -0,0 +1,59 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH EYE-ON-MANGA SECTION "October 28, 2010" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +eye-on-manga \- program to do something +.SH SYNOPSIS +.B eye-on-manga +.RI [ options ] " files" ... +.br +.B bar +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B eye-on-manga +and +.B bar +commands. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBeye-on-manga\fP is a program that... +.SH OPTIONS +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +For a complete description, see the Info files. +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH SEE ALSO +.BR bar (1), +.BR baz (1). +.br +The programs are documented fully by +.IR "The Rise and Fall of a Fooish Bar" , +available via the Info system. +.SH AUTHOR +eye-on-manga was written by . +.PP +This manual page was written by Tom Willemsen , +for the Debian project (but may be used by others). diff --git a/debian/manpage.sgml.ex b/debian/manpage.sgml.ex new file mode 100644 index 0000000..5b6818f --- /dev/null +++ b/debian/manpage.sgml.ex @@ -0,0 +1,156 @@ + manpage.1'. You may view + the manual page with: `docbook-to-man manpage.sgml | nroff -man | + less'. A typical entry in a Makefile or Makefile.am is: + +manpage.1: manpage.sgml + docbook-to-man $< > $@ + + + The docbook-to-man binary is found in the docbook-to-man package. + Please remember that if you create the nroff version in one of the + debian/rules file targets (such as build), you will need to include + docbook-to-man in your Build-Depends control field. + + --> + + + FIRSTNAME"> + SURNAME"> + + October 28, 2010"> + + SECTION"> + ryuslash@gmail.com"> + + EYE-ON-MANGA"> + + + Debian"> + GNU"> + GPL"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2003 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + program to do something + + + + &dhpackage; + + + + + + + + DESCRIPTION + + This manual page documents briefly the + &dhpackage; and bar + commands. + + This manual page was written for the &debian; distribution + because the original program does not have a manual page. + Instead, it has documentation in the &gnu; + Info format; see below. + + &dhpackage; is a program that... + + + + OPTIONS + + These programs follow the usual &gnu; command line syntax, + with long options starting with two dashes (`-'). A summary of + options is included below. For a complete description, see the + Info files. + + + + + + + + Show summary of options. + + + + + + + + Show version of program. + + + + + + SEE ALSO + + bar (1), baz (1). + + The programs are documented fully by The Rise and + Fall of a Fooish Bar available via the + Info system. + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the &gnu; General Public License, Version 2 any + later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in /usr/share/common-licenses/GPL. + + + +
+ + + + diff --git a/debian/manpage.xml.ex b/debian/manpage.xml.ex new file mode 100644 index 0000000..76a635d --- /dev/null +++ b/debian/manpage.xml.ex @@ -0,0 +1,148 @@ + +.
will be generated. You may view the +manual page with: nroff -man .
| less'. A +typical entry in a Makefile or Makefile.am is: + +DB2MAN=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/\ +manpages/docbook.xsl +XP=xsltproc -''-nonet + +manpage.1: manpage.dbk + $(XP) $(DB2MAN) $< + +The xsltproc binary is found in the xsltproc package. The +XSL files are in docbook-xsl. Please remember that if you +create the nroff version in one of the debian/rules file +targets (such as build), you will need to include xsltproc +and docbook-xsl in your Build-Depends control field. + +--> + + + FIRSTNAME"> + SURNAME"> + + October 28, 2010"> + + SECTION"> + ryuslash@gmail.com"> + + EYE-ON-MANGA"> + + + Debian"> + GNU"> + GPL"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2003 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + program to do something + + + + &dhpackage; + + + + + + + + DESCRIPTION + + This manual page documents briefly the + &dhpackage; and bar + commands. + + This manual page was written for the &debian; distribution + because the original program does not have a manual page. + Instead, it has documentation in the &gnu; + Info format; see below. + + &dhpackage; is a program that... + + + + OPTIONS + + These programs follow the usual &gnu; command line syntax, + with long options starting with two dashes (`-'). A summary of + options is included below. For a complete description, see the + Info files. + + + + + + + + Show summary of options. + + + + + + + + Show version of program. + + + + + + SEE ALSO + + bar (1), baz (1). + + The programs are documented fully by The Rise and + Fall of a Fooish Bar available via the + Info system. + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the &gnu; General Public License, Version 2 any + later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in /usr/share/common-licenses/GPL. + + + +
+ diff --git a/debian/menu.ex b/debian/menu.ex new file mode 100644 index 0000000..f57a296 --- /dev/null +++ b/debian/menu.ex @@ -0,0 +1,2 @@ +?package(eye-on-manga):needs="X11|text|vc|wm" section="Apps/see-menu-manual"\ + title="eye-on-manga" command="/usr/bin/eye-on-manga" diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 0000000..1e7948c --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,41 @@ +#!/bin/sh +# postinst script for eye-on-manga +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + diff --git a/debian/postrm.ex b/debian/postrm.ex new file mode 100644 index 0000000..85e7d72 --- /dev/null +++ b/debian/postrm.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postrm script for eye-on-manga +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + diff --git a/debian/preinst.ex b/debian/preinst.ex new file mode 100644 index 0000000..091dde8 --- /dev/null +++ b/debian/preinst.ex @@ -0,0 +1,37 @@ +#!/bin/sh +# preinst script for eye-on-manga +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + install|upgrade) + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + diff --git a/debian/prerm.ex b/debian/prerm.ex new file mode 100644 index 0000000..d0e6cfa --- /dev/null +++ b/debian/prerm.ex @@ -0,0 +1,40 @@ +#!/bin/sh +# prerm script for eye-on-manga +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + remove|upgrade|deconfigure) + ;; + + failed-upgrade) + ;; + + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..7060a43 --- /dev/null +++ b/debian/rules @@ -0,0 +1,98 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/eye-on-manga.sgml > eye-on-manga.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + + dh_clean --exclude ./src/Makefile.orig + +install: build + dh_testdir + dh_testroot + dh_clean -k --exclude ./src/Makefile.orig + dh_installdirs + + # Add here commands to install the package into debian/eye-on-manga. + $(MAKE) DESTDIR=$(CURDIR)/debian/eye-on-manga install + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/debian/watch.ex b/debian/watch.ex new file mode 100644 index 0000000..bac4b1a --- /dev/null +++ b/debian/watch.ex @@ -0,0 +1,22 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# Uncomment to examine a Webpage +# +#http://www.example.com/downloads.php eye-on-manga-(.*)\.tar\.gz + +# Uncomment to examine a Webserver directory +#http://www.example.com/pub/eye-on-manga-(.*)\.tar\.gz + +# Uncommment to examine a FTP server +#ftp://ftp.example.com/pub/eye-on-manga-(.*)\.tar\.gz debian uupdate + +# Uncomment to find new files on sourceforge, for debscripts >= 2.9 +# http://sf.net/eye-on-manga/eye-on-manga-(.*)\.tar\.gz + + -- cgit v1.2.3-54-g00ecf