diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-10-27 18:38:05 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-10-27 18:38:05 +0200 |
commit | 24934e623441310f644e5f72855b0f2bf9f3cd1a (patch) | |
tree | a453939bf58199bc2c3ff27bcf0accf2b221c6c4 /sys-boot/plymouth-extras | |
parent | 687f45092b4f4ccf33765cee7427f054bae22344 (diff) |
Incoming! Moving Rogento.git to kogaion-desktop. Finally
Diffstat (limited to 'sys-boot/plymouth-extras')
-rw-r--r-- | sys-boot/plymouth-extras/Manifest | 1 | ||||
-rw-r--r-- | sys-boot/plymouth-extras/plymouth-extras-0.8.9_pre1.ebuild | 53 |
2 files changed, 53 insertions, 1 deletions
diff --git a/sys-boot/plymouth-extras/Manifest b/sys-boot/plymouth-extras/Manifest index e1703677..e9eb462d 100644 --- a/sys-boot/plymouth-extras/Manifest +++ b/sys-boot/plymouth-extras/Manifest @@ -1,2 +1 @@ DIST plymouth-0.8.8.tar.bz2 1143549 SHA256 1bada4e1d3a31a5a99adc2db83f5452d9818839cda51a6e430f044f6281d759b SHA512 97a20a8622c7ea51000e9b6d88a25fd84d7001fb2727527a72344b555f389c74954bd0be0bffd9cc9175b5c5a0d28e95af058fce79ec7531f736619ee74d8d94 WHIRLPOOL badb44a6c1eb004772e67cfe3cda601d22590d813ebd4bce5f0fcb325c445246916ba30e083c6aa98b73b460ddf4f2caf9bf2727d22bbbc5414f11a5cf0e5ddf -EBUILD plymouth-extras-0.8.8-r1.ebuild 1283 SHA256 75dd4d5dc0d285858ccb4350f5196dfa0e870143c7c8832d6b313ab1c0d56c57 SHA512 3f592bad9d34cb7caa8c3c08f3d65401c2e319287317d0d01b98cda86de8e381ea83eb378d55d81e0f96f00742594febeea6052371197f7ac0123926f5f11500 WHIRLPOOL efa11ff6d80af3d67d45a643db19596d6ee6f95f1ddf2590ce6a54a99a461dcd7e0d026e98374da7a2d03344f3566bb191603d5a274016ebc4049dce37a208d5 diff --git a/sys-boot/plymouth-extras/plymouth-extras-0.8.9_pre1.ebuild b/sys-boot/plymouth-extras/plymouth-extras-0.8.9_pre1.ebuild new file mode 100644 index 00000000..e45b9b58 --- /dev/null +++ b/sys-boot/plymouth-extras/plymouth-extras-0.8.9_pre1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +EGIT_REPO_URI="git://anongit.freedesktop.org/plymouth" +EGIT_COMMIT="37d2e400d25e6b4716d77d26fb7d40de8a8c1a8a" +AUTOTOOLS_AUTORECONF="true" + +inherit autotools-utils systemd toolchain-funcs git-2 + +DESCRIPTION="X11 and Label plugins for Plymouth" +HOMEPAGE="http://cgit.freedesktop.org/plymouth/" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug static-libs" + +CDEPEND=">=media-libs/libpng-1.2.16 + dev-libs/glib + >=x11-libs/gtk+-2.12:2 + >=x11-libs/pango-1.21 + ~sys-boot/plymouth-${PV}[-gtk,-pango,debug=]" +DEPEND="${CDEPEND} + virtual/pkgconfig + " +RDEPEND="${CDEPEND}" + +S="${WORKDIR}/${P/-extras}" + +src_configure() { + local myeconfargs=( + --with-system-root-install + --localstatedir=/var + --enable-gtk + --enable-pango + $(use_enable debug tracing) + ) + autotools-utils_src_configure +} + +src_install() { + local build_dir="${BUILD_DIR}" + + # Build the x11 plugin + BUILD_DIR="${build_dir}/src/plugins/renderers/x11" autotools-utils_src_install + + # Build the label plugin + BUILD_DIR="${build_dir}/src/plugins/controls/label" autotools-utils_src_install +} |