diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-21 06:34:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-21 06:34:52 +0000 |
commit | 7e354e3300c7d07eafabe609e030ac7ae5d02ec8 (patch) | |
tree | 0aadba2e705b69146633d97913acb12b2e365895 | |
parent | sort, and change default cron from dcron to vcron since thats the only selinu... (diff) | |
download | gentoo-2-7e354e3300c7d07eafabe609e030ac7ae5d02ec8.tar.gz gentoo-2-7e354e3300c7d07eafabe609e030ac7ae5d02ec8.tar.bz2 gentoo-2-7e354e3300c7d07eafabe609e030ac7ae5d02ec8.zip |
fix linking #29123
-rw-r--r-- | x11-misc/e16keyedit/e16keyedit-0.2.ebuild | 15 | ||||
-rw-r--r-- | x11-misc/e16menuedit/e16menuedit-0.1.ebuild | 10 |
2 files changed, 19 insertions, 6 deletions
diff --git a/x11-misc/e16keyedit/e16keyedit-0.2.ebuild b/x11-misc/e16keyedit/e16keyedit-0.2.ebuild index 07cb8c7ee54a..56ba89969004 100644 --- a/x11-misc/e16keyedit/e16keyedit-0.2.ebuild +++ b/x11-misc/e16keyedit/e16keyedit-0.2.ebuild @@ -1,20 +1,27 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/e16keyedit/e16keyedit-0.2.ebuild,v 1.11 2003/07/13 23:00:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/e16keyedit/e16keyedit-0.2.ebuild,v 1.12 2003/09/21 06:34:52 vapier Exp $ DESCRIPTION="Key binding editor for enlightenment 16" -SRC_URI="mirror://sourceforge/enlightenment/e16utils/${P}.tar.gz" HOMEPAGE="http://www.enlightenment.org/" +SRC_URI="mirror://sourceforge/enlightenment/e16utils/${P}.tar.gz" LICENSE="as-is" SLOT="0" KEYWORDS="x86 sparc" DEPEND="virtual/x11 - >=x11-wm/enlightenment-0.16" + >=x11-wm/enlightenment-0.16 + =x11-libs/gtk+-1*" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i 's:-lgdbm -lgdk_imlib::' Makefile +} src_compile() { - emake || die + emake EXTRA_CFLAGS="${CFLAGS}" || die } src_install() { diff --git a/x11-misc/e16menuedit/e16menuedit-0.1.ebuild b/x11-misc/e16menuedit/e16menuedit-0.1.ebuild index 7a307cd8eee6..7147b7abc420 100644 --- a/x11-misc/e16menuedit/e16menuedit-0.1.ebuild +++ b/x11-misc/e16menuedit/e16menuedit-0.1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/e16menuedit/e16menuedit-0.1.ebuild,v 1.1 2003/06/24 00:52:04 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/e16menuedit/e16menuedit-0.1.ebuild,v 1.2 2003/09/21 06:34:41 vapier Exp $ DESCRIPTION="Menu editor for enlightenment DR16" -SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz" HOMEPAGE="http://www.enlightenment.org/" +SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz" LICENSE="as-is" SLOT="0" @@ -14,6 +14,12 @@ DEPEND="virtual/x11 >=x11-wm/enlightenment-0.16 =x11-libs/gtk+-1*" +src_unpack() { + unpack ${A} + cd ${S} + sed -i 's:-lgdbm -lgdk_imlib::' Makefile +} + src_compile() { emake DEVFLAGS="${CFLAGS}" || die } |