summaryrefslogtreecommitdiff
path: root/portato (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* added ability of passing "&&" to the sync commandnecoro2007-06-151-4/+34
* corrected the about-statementsnecoro2007-06-142-2/+2
* reverted back to png, but now using the image in the svgnecoro2007-06-122-3/+2
* added svg-iconnecoro2007-06-122-2/+3
* follow GNOME HIG (at least a little)necoro2007-06-111-199/+237
* nomsgnecoro2007-06-031-3/+9
* bug in PortageSystemnecoro2007-06-031-1/+1
* bugfixnecoro2007-06-011-0/+1
* Killed the segfault with PyQt-4.2necoro2007-06-011-11/+11
* Some interface changesnecoro2007-05-315-19/+63
* little bug fix in cb_revert_clicked()necoro2007-05-311-1/+1
* - added settings: gtk: console fontnecoro2007-05-156-718/+813
* made overlaylabel work in Qtnecoro2007-05-142-1/+14
* added the display of the masking reasonnecoro2007-05-144-0/+18
* filtering "--ask" fron EMERGE_DEFAULT_OPTSnecoro2007-05-141-2/+8
* filtering "--ask" fron EMERGE_DEFAULT_OPTSnecoro2007-05-143-1/+21
* now showing the overlaynecoro2007-05-125-5/+27
* added etcproposals-1.2 supportnecoro2007-05-091-2/+29
* added the ability of sorting the pkglist by installation statusnecoro2007-05-075-206/+283
* fixed bugs in gtk and qtnecoro2007-04-272-20/+58
* some more fixed bugsnecoro2007-04-261-0/+1
* some more fixed bugsnecoro2007-04-262-1/+1
* fixed bugsnecoro2007-04-261-2/+2
* removed highlight plugin from normal portatonecoro2007-04-261-33/+0
* nomsgnecoro2007-04-261-4/+4
* highlight works -> reverting to oldnecoro2007-04-261-1/+1
* trying the new gtksourceviewnecoro2007-04-262-1/+1
* now considering non-existing files in /etc/portagenecoro2007-04-251-2/+5
* added systraynecoro2007-04-255-19/+198
* added noroot-optionnecoro2007-04-255-11/+42
* add application icon and desktop filenecoro2007-04-243-4/+9
* moved *.glade and *.ui to one directory to omit the change of the config.py e...necoro2007-04-247-2/+2533
* moved *.glade and *.ui to one directory to omit the change of the config.py e...necoro2007-04-245-1191/+0
* moved *.glade and *.ui to one directory to omit the change of the config.py e...necoro2007-04-241-1340/+0
* added dialogs to warn you when the queue is running on quitting portatonecoro2007-04-246-214/+263
* Made qt plugin-ready; lots of documentationnecoro2007-04-2012-75/+335
* nomsgnecoro2007-04-181-1/+0
* finished Qt-Frontendnecoro2007-04-185-15/+117
* marking installed packages in pkglistnecoro2007-04-174-14/+42
* added ebuild window for Qt-Frontendnecoro2007-04-164-2/+229
* added preferences for Qt-Frontendnecoro2007-04-169-279/+710
* Improved masking display and made most of the Qt-Frontend worknecoro2007-04-137-35/+334
* Some more functionality for the Qt-Frontend (complete emerge)necoro2007-04-108-217/+347
* Some more functionality for the Qt-Frontendnecoro2007-04-079-88/+457
* Added Qt-Terminalnecoro2007-04-074-4/+213
* First qt draftnecoro2007-04-065-1/+791
* showed masked packages unmasked by the user similar to stable marked testing ...necoro2007-04-044-13/+37
* Some small changes for etcproposals 1.1necoro2007-03-311-2/+2
* Some small changes for etcproposals 1.1necoro2007-03-312-3/+3
* Some small changes for etcproposals 1.1necoro2007-03-311-6/+13
d your changes) causes all of the CGit objects to be rebuilt. Avoid this by using EXTRA_CPPFLAGS to add the version for only those files that are affected and make them depend on VERSION. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20ui-patch: use cgit_version not CGIT_VERSIONJohn Keeping1-1/+1 We already have a global cgit_version which is set from the #define'd CGIT_VERSION in cgit.c. Change ui-patch.c to use this so that we only need to rebuild cgit.o when the version changes. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20Makefile: re-use Git's Makefile where possibleJohn Keeping3-119/+80 Git does quite a lot of platform-specific detection in its Makefile, which can result in it defining preprocessor variables that are used in its header files. If CGit does not define the same variables it can result in different sizes of some structures in different places in the same application. For example, on Solaris Git uses it's "compat" regex library which has a different sized regex_t structure than that available in the platform regex.h. This has a knock-on effect on the size of "struct rev_info" and leads to hard to diagnose runtime issues. In order to avoid all of this, introduce a "cgit.mk" file that includes Git's Makefile and make all of the existing logic apply to CGit's objects as well. This is slightly complicated because Git's Makefile must run in Git's directory, so all references to CGit files need to be prefixed with "../". In addition, OBJECTS is a simply expanded variable in Git's Makefile so we cannot just add our objects to it. Instead we must copy the two applicable rules into "cgit.mk". This has the advantage that we can split CGit-specific CFLAGS from Git's CFLAGS and hence avoid rebuilding all of Git whenever a CGit-specific value changes. Signed-off-by: John Keeping <john@keeping.me.uk> Acked-by: Jamie Couture <jamie.couture@gmail.com>