diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
commit | 7224c1253228e5c29c78cb3f0f26ce34770f2356 (patch) | |
tree | 1684924656132935256e034f35f92abee6623265 /sys-boot/plymouth-extras |
Added ebuilds for kogaion desktop
Diffstat (limited to 'sys-boot/plymouth-extras')
-rw-r--r-- | sys-boot/plymouth-extras/Manifest | 2 | ||||
-rw-r--r-- | sys-boot/plymouth-extras/plymouth-extras-0.8.8-r1.ebuild | 52 |
2 files changed, 54 insertions, 0 deletions
diff --git a/sys-boot/plymouth-extras/Manifest b/sys-boot/plymouth-extras/Manifest new file mode 100644 index 00000000..e1703677 --- /dev/null +++ b/sys-boot/plymouth-extras/Manifest @@ -0,0 +1,2 @@ +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.8-r1.ebuild b/sys-boot/plymouth-extras/plymouth-extras-0.8.8-r1.ebuild new file mode 100644 index 00000000..b24ea43d --- /dev/null +++ b/sys-boot/plymouth-extras/plymouth-extras-0.8.8-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +inherit autotools-utils systemd toolchain-funcs + +DESCRIPTION="X11 and Label plugins for Plymouth" +HOMEPAGE="http://cgit.freedesktop.org/plymouth/" +SRC_URI="http://www.freedesktop.org/software/plymouth/releases/${P/-extras}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~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) + $(use_enable libkms) + $(use_enable video_cards_intel libdrm_intel) + $(use_enable video_cards_radeon libdrm_radeon) + ) + 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 +} |