summaryrefslogtreecommitdiff
path: root/eclass
Commit message (Collapse)AuthorAgeFilesLines
* Make eclass-manpages ready, bug #210933, thanks mren.Peter Volkov2008-06-211-11/+51
|
* Set default PYTHON_MODNAME only if the directory site-packages/PN exists. ↵Ali Polatel2008-06-201-2/+5
| | | | Thanks to ColdWind.
* Fixed error where incorrect path to helper function used.Alistair Bush2008-06-201-2/+2
|
* Add missing -x operator.Alistair Bush2008-06-191-2/+2
|
* Prepare eclasses to support javatoolkit move.Alistair Bush2008-06-182-4/+26
|
* For the moment just disable the debug use-flag, as it fails to buildRaúl Porcel2008-06-171-18/+18
|
* Revert last commit as it turns out it breaks with latest stable git (1.5.4.x ↵Bo Ørsted Andresen2008-06-161-4/+3
| | | | and below).
* Export GIT_WORK_TREE and use git checkout to get a work tree in S.Bo Ørsted Andresen2008-06-161-3/+4
|
* Make GIT_DIR an absolute path exported during git_fetch().Bo Ørsted Andresen2008-06-151-2/+2
|
* (#226187) The MODULE override wasn't working correctly because of a logic ↵Donnie Berkholz2008-06-131-12/+14
| | | | error made when refactoring.
* typoChristian Faulhammer2008-06-121-2/+2
|
* export QTDIR.Bo Ørsted Andresen2008-06-111-2/+2
|
* allow autotools_check_macro to parse multiple arguments and add LT_INIT to ↵Mike Frysinger2008-06-091-6/+7
| | | | macro list to run libtoolize
* enable --enable-cld for unstable 4.3 versionsMike Frysinger2008-06-091-1/+10
|
* Warn when using append-ldflags to pass libraries to link to.Diego Elio Pettenò2008-06-071-1/+7
| | | | | | | Libraries shouldn't be passed as LDFLAGS, the flags should be passed before the object files to link, while libraries should be passed after. Passing libraries through LDFLAGS is one of the causes of --as-needed failures.
* Do EGIT_STORE_DIR must not be world writable.Bo Ørsted Andresen2008-06-051-3/+1
|
* Fixed python_mod_cleanup to clean up in the right placeJim Ramsay2008-06-041-2/+2
|
* Moved python_mod_optimize to pkg_postinst (Bug #224833)Jim Ramsay2008-06-041-5/+9
|
* Sync elisp.eclass from Emacs overlay (revision 1083):Ulrich Müller2008-06-031-13/+6
| | | | | Remove SIMPLE_ELISP variable. In src_unpack, always move ${P}.el to ${PN}.el if the former exists.
* RDEPEND was missing, bug 224731.Ulrich Müller2008-06-031-1/+3
|
* use elog for DONT_MOUNT_BOOT user message #223311Mike Frysinger2008-06-022-85/+72
|
* Warn about useless leftover NO_GETTEXT_HACK if plugin already was updated ↵Matthias Schwarzott2008-06-021-1/+4
| | | | for gettext.
* Removed reference to 2.4 to 2.6 migration documentMike Pagano2008-06-011-3/+2
|
* add tests for tc-arch-kernel on x86-fbsdAlexis Ballier2008-06-011-2/+3
|
* Fix tc-arch-kernel for freebsd: it is still i386 there, bug #222715Alexis Ballier2008-06-011-2/+3
|
* add eclass documentation by mren #210546Mike Frysinger2008-06-011-28/+50
|
* remove old docs as wellMike Frysinger2008-06-011-79/+1
|
* add eclass documentation by mren #210521Mike Frysinger2008-06-011-35/+108
|
* add eclass documentation by mren #210316Mike Frysinger2008-06-011-27/+55
|
* Changed maintainer to python@g.o. since liquidx retired.Ali Polatel2008-05-301-2/+2
|
* Second try to fix passing additional options to python_mod_optimize.Ali Polatel2008-05-301-11/+6
|
* Fix last commit. Thanks to Remy Blank.Ali Polatel2008-05-291-8/+6
|
* Pass options given to python_mod_optimize to compileall.py ,thanks to Remy ↵Ali Polatel2008-05-291-13/+33
| | | | Blank, #224137. Fixed typos.
* Fixed typo in python_mod_cleanup.Ali Polatel2008-05-291-2/+2
|
* Make FEATURES=-userpriv test non-fatal during pkg_setup, as portage always ↵Robin H. Johnson2008-05-291-2/+2
| | | | runs pkg_setup as root, so we cannot detect FEATURES=-userpriv by using UID.
* Make sure python_mod* functions are run in required phases, die otherwise.Ali Polatel2008-05-291-2/+19
|
* python_mod_optimize is ROOT aware.Ali Polatel2008-05-291-7/+3
|
* Make python_mod_optimize ROOT aware.Ali Polatel2008-05-291-5/+24
|
* hopefully last shot at fixing php-common-r1.eclass for postgresql usage, ↵Christian Hoffmann2008-05-291-3/+4
| | | | thanks to zlin and dev-zero (again ;)), bug 223797, bug 222933
* python_mod_compile is now ROOT aware and can accept more than one files as ↵Ali Polatel2008-05-291-10/+17
| | | | argument.
* Improve the datadir warning message per bug #207636.Robin H. Johnson2008-05-291-3/+4
|
* Fix whitespace.Robin H. Johnson2008-05-291-3/+3
|
* MySQL hates you if your machine is called localhost per bug #213475.Robin H. Johnson2008-05-291-1/+5
|
* Ensure correct install of docs and config examples for bug #212910.Robin H. Johnson2008-05-291-6/+6
|
* Bug #187024. Test for what user we are instead of FEATURES=userpriv. MySQL ↵Robin H. Johnson2008-05-291-3/+3
| | | | tests WILL fail if we are root.
* Change the MODULE setup to a case statement. Thanks to Bo Ørsted Andresen, ↵Donnie Berkholz2008-05-281-26/+12
| | | | who finally got me to do it.
* Allow ebuilds to override the module they download from, so we need less ↵Donnie Berkholz2008-05-271-21/+29
| | | | special-casing in here.
* Typo: CONFIGURE_OPTIONS, not CONFIGURE_OPTIONTS. Custom configure options ↵Donnie Berkholz2008-05-271-2/+2
| | | | weren't getting through before, and now they will.
* trying to fix postgresql check logic in php-common-r1.eclass, bug 223797Christian Hoffmann2008-05-271-18/+19
|
* Make sure S exists thanks to Peter Volkov (pva) on bug #223813.Bo Ørsted Andresen2008-05-271-1/+2
|