diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2008-02-01 15:13:01 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2008-02-01 15:13:01 +0000 |
commit | 675bb0f8c5398d56a9931d1df34587a568156d0c (patch) | |
tree | 565e649605170a53497bbed3501c7f58a0ff1ff2 /x11-plugins/wmacpi/wmacpi-2.2_rc1.ebuild | |
parent | punt (diff) | |
download | gentoo-2-675bb0f8c5398d56a9931d1df34587a568156d0c.tar.gz gentoo-2-675bb0f8c5398d56a9931d1df34587a568156d0c.tar.bz2 gentoo-2-675bb0f8c5398d56a9931d1df34587a568156d0c.zip |
Version bump, plus support for crosscompile, LDFLAGS, etc. Closes bug #207916. Wiped out older version.
(Portage version: 2.1.3.19)
Diffstat (limited to 'x11-plugins/wmacpi/wmacpi-2.2_rc1.ebuild')
-rw-r--r-- | x11-plugins/wmacpi/wmacpi-2.2_rc1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11-plugins/wmacpi/wmacpi-2.2_rc1.ebuild b/x11-plugins/wmacpi/wmacpi-2.2_rc1.ebuild new file mode 100644 index 000000000000..d0e0ba4ec922 --- /dev/null +++ b/x11-plugins/wmacpi/wmacpi-2.2_rc1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmacpi/wmacpi-2.2_rc1.ebuild,v 1.1 2008/02/01 15:13:01 s4t4n Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="WMaker DockApp: ACPI status monitor for laptops" +HOMEPAGE="http://himi.org/wmacpi/" +MY_PV="${PV/_}" +MY_P="${PN}-${MY_PV}" +S="${WORKDIR}/${MY_P}" +SRC_URI="http://himi.org/wmacpi/download/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 -ppc -sparc ~x86" +IUSE="" + +DEPEND="x11-libs/libdockapp + x11-libs/libX11" + +src_unpack() { + unpack ${A} + cd "${S}" + # acpi and acpi.1 conflict with sys-power/acpi - Bug #60685 + mv acpi.c acpi-batt-status.c + mv acpi.1 acpi-batt-status.1 + epatch "${FILESDIR}"/${P}-makefile.patch +} + +src_compile() { + emake CC="$(tc-getCC)" OPT="${CFLAGS}" || die "compile failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS ChangeLog README TODO +} + +pkg_postinst() { + elog "The command-line utility are corresponding manpage are installed" + elog "as acpi-batt-status to prevent collisions with sys-power/acpi" +} |