forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-libs/elemntary: version bump to 1.15.1 #560450
- Loading branch information
Showing
2 changed files
with
52 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST elementary-1.12.2.tar.bz2 16726431 SHA256 c6aa5e83224400babdd2a6ed848eeb09aa9bed2e1f573619d4d8c0dbf29fcd12 SHA512 05c9fb012bd933fe52978d0bdec7d80be06a54531d6c026de0cd32c7ba218c2c9960ed6c5f5aa94360c88a4465dbd3b8df7d92e73bc6bb754493b44825858232 WHIRLPOOL 97666a5072e280a613f21b3c32566b6a47a0d5a46fbe4983ec3e40c35bba6bd1f5d8f4d09557023494a9eaa89dc14711b8cc007d81e4c19881601955c1acf3df | ||
DIST elementary-1.13.1.tar.xz 16120080 SHA256 11595b6c5f511150a26e970bf8e590f96a6ce9e33e5dd8419407013844b2b74f SHA512 b8d4e3ff2447a80a98119753012e6ef0666ca569e4d401e66477a51667b6e940eb9c02d87f37b289b257db2855fc35486f0229e8861e74b6c48366aac30caa9f WHIRLPOOL 5400f9a11f2997fde9ee7b170ccf6b8833ad0fdecf229fc2dcbb9eea731e40958922672b47fa539df533006b29f7a197473cb3b24b8bac51a4159fc9f249ec46 | ||
DIST elementary-1.15.0.tar.xz 18430880 SHA256 2be3180acbb9fa2fc0e9351b5508318925eb38733a6d54e1b3fc75e58368f1b0 SHA512 5441ebc012cf76aad074d25394cbb855decabcefa5a8b5feb2909a4fbc470fad32b1660fbc0bd47f6c11267d11cb21fe9df283718d4ccf68ffe44319de229781 WHIRLPOOL 29aa20103a56bd527754f14841216f0c6198e2663836455cc8b6391a88ca558c632f15868b948059616e659fd7c43f797526a472cba26ba38bc5195f562fbb3c | ||
DIST elementary-1.15.1.tar.xz 18514596 SHA256 ab22a40a5108f7f988a34b0a791d202d2c6c538ea8508919c264bdbdce11ab04 SHA512 1622eb3e54f716b84642c9fe2164c882749fe402cf516e070a47c6d0cff898d043e231e3f557984e6d2fff90bf218249431b148d209bc1ed1aacb35211364ba6 WHIRLPOOL 4b224a54a11d5e8907b53f8d71ef541ff93fa92a1a7e24ec567312d6fb3c7c0c31358a1ace2b66c227447ffef3c94f7b373da78c694e09d9d3f67f888d641f96 |
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,51 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
|
||
MY_P=${P/_/-} | ||
|
||
if [[ "${PV}" == "9999" ]] ; then | ||
EGIT_SUB_PROJECT="core" | ||
EGIT_URI_APPEND="${PN}" | ||
else | ||
SRC_URI="https://download.enlightenment.org/rel/libs/${PN}/${MY_P}.tar.xz" | ||
EKEY_STATE="snap" | ||
fi | ||
|
||
inherit enlightenment | ||
|
||
DESCRIPTION="Basic widget set, based on EFL for mobile touch-screen devices" | ||
HOMEPAGE="https://trac.enlightenment.org/e/wiki/Elementary" | ||
|
||
LICENSE="LGPL-2.1" | ||
IUSE="debug examples fbcon quicklaunch sdl wayland X static-libs" | ||
|
||
DEPEND=">=dev-libs/efl-${PV}[fbcon?,sdl?,png,wayland?,X?]" | ||
RDEPEND="${DEPEND}" | ||
|
||
S=${WORKDIR}/${MY_P} | ||
|
||
src_configure() { | ||
E_ECONF=( | ||
$(use_enable debug) | ||
$(use_enable doc) | ||
--disable-ecore-cocoa | ||
--disable-ecore-psl1ght | ||
--disable-ecore-win32 | ||
--disable-elocation | ||
--disable-emap | ||
--disable-eweather | ||
# broken: make[4]: *** No rule to make target 'prefs_example_01.epb', needed by 'all-am'. Stop | ||
#$(use_enable examples build-examples) | ||
$(use_enable examples install-examples) | ||
$(use_enable fbcon ecore-fb) | ||
$(use_enable sdl ecore-sdl) | ||
$(use_enable wayland ecore-wayland) | ||
$(use_enable X ecore-x) | ||
$(use_enable quicklaunch quick-launch) | ||
) | ||
|
||
enlightenment_src_configure | ||
} |