# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-wm/aewm++-goodies/aewm++-goodies-1.0.ebuild,v 1.13 2008/05/04 08:52:24 omp Exp $ inherit eutils DESCRIPTION="Goodies for aewm++" HOMEPAGE="http://frankhale.org/" SRC_URI="http://frankhale.org/${P/-/_}.tar.bz2" # ae_fspanel is as-is. Appbar and setrootimage is "gpl", referring to gnu.org. LICENSE="as-is || ( GPL-2 GPL-3 )" SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="" RDEPEND="x11-libs/libX11 x11-libs/libXext x11-libs/libXpm" DEPEND="${RDEPEND} x11-proto/xproto x11-proto/xextproto" S="${WORKDIR}/${PN/-/_}" GOODIES="ae_fspanel-1.0 appbar-1.0 setrootimage-1.0" src_unpack() { unpack ${A} cd "${S}" # compatibility with ANSI C++ and GCC3.2 epatch "${FILESDIR}/aewm++-goodies-gcc3-gentoo.patch" } src_compile() { for i in ${GOODIES} do # remove -s from "install -s " and "-Xlinker -s " sed -i -e 's/ -s / /' $i/Makefile make CFLAGS="${CFLAGS}" -C $i || die "make failed" done } src_install() { dodir /usr/bin for i in ${GOODIES} do make DESTDIR="${D}" -C $i install || die "make install failed" docinto $i dodoc $i/{README,ChangeLog,COPYING,LICENSE} done }