summaryrefslogtreecommitdiff
path: root/eclass
Commit message (Collapse)AuthorAgeFilesLines
* Introduce systemd_dotmpfilesd() for installing tmpfiles.d files.Michał Górny2011-06-111-1/+15
|
* Be compatible with bash3 as well.Diego Elio Pettenò2011-06-101-4/+4
|
* Use a safer syntax for libtool.eclass (bug #370983).Diego Elio Pettenò2011-06-101-5/+3
|
* virtualx.eclass should depend on xorg-server[xvfb] instead of -minimal, bug ↵Matt Turner2011-06-091-2/+2
| | | | 357295
* Update KDE eclasses, add support for KDEPIM 4.6.0Theo Chatzimichos2011-06-092-9/+7
|
* Add a gold-specific patch when gold is used as linker, as only libtool 2.2.7 ↵Diego Elio Pettenò2011-06-092-9/+31
| | | | and later actually report it properly. Check two parents directories for configure as sometimes it would otherwise fail (libarchive), and make the debug log a bit more useful by appending rather than replacing and adding the name of the patch/file it gets tested on.
* Take over as maintainer.Donnie Berkholz2011-06-081-2/+2
|
* Fix for r1.16 changes: -j1 should have been removed completelyBernard Cafarelli2011-06-081-3/+2
|
* Sync KDE eclasses with overlay again (prerequisite for slotmoves)Jonathan Callen2011-06-074-73/+38
|
* Goodbye kdeprefix (for >= 4.6.4)Jonathan Callen2011-06-063-92/+28
| | | | | Remove all usage of the kdeprefix flag that doesn't die immediately; remove the flag itself on >= 4.6.4
* Use modified GNUstep.conf for compilation, should fix bug #366795Bernard Cafarelli2011-06-061-3/+11
|
* Goodbye kdeprefix (part 1 -- die on +kdeprefix)Jonathan Callen2011-06-061-1/+15
|
* Sync kde eclasses from overlayJonathan Callen2011-06-063-46/+33
|
* Warn when using xfconf_use_debug without having debug in IUSEChristoph Mende2011-06-061-1/+3
|
* Add documentation.Hans de Graaff2011-06-041-4/+22
|
* Documentation syntax fixes.Hans de Graaff2011-06-041-4/+4
|
* Fix typo when getting KV_MINOR. Thanks to hwoarang for reportingMike Pagano2011-06-031-2/+2
|
* Add support for 2 part versioning. bug #369533Mike Pagano2011-06-031-48/+119
|
* Update linux-mod.eclass for building modules on Linux 3.0* kernels.Robin H. Johnson2011-06-011-2/+3
|
* Drop maintainership of eclasses I won't do anymore.Tomas Chvatal2011-05-312-4/+3
|
* Support >=ruby-gnome2-0.90 file structure. Based on a code from Shunsuke ↵Naohiro Aota2011-05-291-3/+8
| | | | Shimizu.
* Ensure LDFLAGS usageNaohiro Aota2011-05-291-2/+4
|
* for EAPI>=4, rely on PMS MERGE_TYPE rather than portage non-spec ↵Brian Harring2011-05-271-2/+9
| | | | EMERGE_FROM; for EAPI<4, use EMERGE_FROM since it's acceptable there
* Add 4.7 to the list of possible slotsJonathan Callen2011-05-241-2/+2
|
* Fix SRC_URI for experimental xemacs packages.Hans de Graaff2011-05-241-2/+2
|
* Always show kdeprefix warning with USE=kdeprefix; make warning scarierJonathan Callen2011-05-231-10/+10
|
* prepping for updated bootstrapGeorge Shapovalov2011-05-231-4/+7
|
* Added 5.4 and 5.5 to PHP_USEOle Markus With2011-05-221-2/+2
|
* Removed chpax, see bug #365825Anthony G. Basile2011-05-221-88/+61
|
* Improved error handling when failed to load modulesAnthony G. Basile2011-05-201-2/+2
|
* Run default src_unpack at the end. Because users can specify something in ↵Tomas Chvatal2011-05-201-1/+5
| | | | src_uri and we should unpack it.
* Drop useless cd so we won't polute the environment.Tomas Chvatal2011-05-201-3/+1
|
* Fix typo upack -> unpackTomas Chvatal2011-05-201-2/+2
|
* DOCS has to be an array now, all ebuilds are migratedSamuli Suominen2011-05-191-9/+3
|
* Revert the change that was commited by accident :/Tomas Chvatal2011-05-191-104/+73
|
* Add EGIT_PROJECT variable that allows us to specify folder where to check ↵Tomas Chvatal2011-05-192-76/+121
| | | | out the git repository.
* Add a http fallback URI for git.Michał Górny2011-05-171-2/+2
|
* setup env before loading ACLOCAL_AMFLAGS #365401 by Dennis SchriddeMike Frysinger2011-05-161-6/+13
|
* Fix typo video -> inputTomas Chvatal2011-05-141-2/+2
|
* Add x11-libs/libXcomposite to general KDE dependenciesAndreas K. Hüttel2011-05-141-1/+2
|
* added CABAL_EXTRA_CONFIGURE_FLAGS variable, more tweaksSergei Trofimovich2011-05-081-23/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - CABAL_EXTRA_CONFIGURE_FLAGS - variable similar to EXTRA_ECONF for econf. It appends given arguments to 'runhaskell Setup configure args' call. It's handy when one wants to pass some argument for all haskell packages, like 'CABAL_EXTRA_CONFIGURE_FLAGS=--enable-shared' to get shared variants for all haskell libraries. - GHC_BOOTSTRAP_FLAGS - ghc option when building Setup.hs. - fix CABAL_FEATURES="nocabaldep" (found by Felipe Almeida Lessa) Felipe's output for ghc-6.12.3: > $ ghc-pkg field Cabal version > version: 1.8.0.6 > version: 1.10.1.0 My output for ghc-6.12.3: > $ ghc-pkg field Cabal version >    version: 1.10.1.0 >    version: 1.8.0.6 It has unstable order and breaks dev-haskell/cairo setup. Now we always pick ghc's Cabal version (as CABAL_FROM_GHC var name says), not the most recently installed. - Setup.hs is linked dynamically where available. Drastically speedups (from tens of seconds down to seconds) link time (and the whole package build time). - src_compile() got a QA warning when passed '--flags=' argument for EAPI, where yet src_configure() (catches potential package misconfiguration)
* speed up package deregistration, add 'ghc-supports-shared-libraries' helperSergei Trofimovich2011-05-081-17/+16
| | | | | | | | - 'pkg_prerm' could take up to minute in a loop of checking protected packages. We don't need to protect anything on modern ghc (6.12+) - ghc-supports-shared-libraries returns success if installed ghc is able to build shared objects
* Add more common protos.Tomas Chvatal2011-05-081-1/+3
|
* All input drivers require inputproto so just handle it in eclass.Tomas Chvatal2011-05-081-1/+6
|
* Bug #366289: some of the docs are removed in newer versions, update dodoc line.Robin H. Johnson2011-05-071-2/+4
|
* Missing depend gnome-base/libgnomeprintui added. Almost-silent build failure ↵Peter Alfredsen2011-05-061-2/+3
| | | | would result if this were not present, only caught by presence of too few files.
* Drop needless `inherit multilib'. Thanks to Henry Gebhardt for pointing this ↵Michał Górny2011-05-041-3/+1
| | | | out.
* Introducing systemd.eclass - a helper eclass to handle systemd unit ↵Michał Górny2011-05-041-0/+102
| | | | installation.
* All older than -good-0.10.23 versions are gone from tree, so remove now ↵Mart Raudsepp2011-05-041-8/+3
| | | | unnecessary econf support for these
* All older than -bad-0.10.19 versions are gone from tree, so remove now ↵Mart Raudsepp2011-05-041-32/+2
| | | | unnecessary econf and patching support for these