diff options
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/e16keyedit/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/e16keyedit/e16keyedit-0.7.ebuild | 26 |
2 files changed, 33 insertions, 2 deletions
diff --git a/x11-misc/e16keyedit/ChangeLog b/x11-misc/e16keyedit/ChangeLog index 8f5234d8d62c..0fff9e18fc98 100644 --- a/x11-misc/e16keyedit/ChangeLog +++ b/x11-misc/e16keyedit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/e16keyedit -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/e16keyedit/ChangeLog,v 1.13 2009/06/20 16:22:54 vapier Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/e16keyedit/ChangeLog,v 1.14 2010/07/31 04:01:50 vapier Exp $ + +*e16keyedit-0.7 (31 Jul 2010) + + 31 Jul 2010; Mike Frysinger <vapier@gentoo.org> +e16keyedit-0.7.ebuild: + Version bump #314761. *e16keyedit-0.6 (20 Jun 2009) diff --git a/x11-misc/e16keyedit/e16keyedit-0.7.ebuild b/x11-misc/e16keyedit/e16keyedit-0.7.ebuild new file mode 100644 index 000000000000..1e4436c895ac --- /dev/null +++ b/x11-misc/e16keyedit/e16keyedit-0.7.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/e16keyedit/e16keyedit-0.7.ebuild,v 1.1 2010/07/31 04:01:50 vapier Exp $ + +DESCRIPTION="Key binding editor for enlightenment 16" +HOMEPAGE="http://www.enlightenment.org/" +SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="=x11-libs/gtk+-2*" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf --enable-gtk2 || die + emake || die +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc README ChangeLog AUTHORS +} |