diff options
author | Chris White <chriswhite@gentoo.org> | 2005-11-30 09:38:30 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2005-11-30 09:38:30 +0000 |
commit | 67c8b060271109f68d8b0a44de61d297ddfbe2e7 (patch) | |
tree | 42ce8164da9dd6d55caa82dfe6832b4a2a0a6ad5 /x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-67c8b060271109f68d8b0a44de61d297ddfbe2e7.tar.gz gentoo-2-67c8b060271109f68d8b0a44de61d297ddfbe2e7.tar.bz2 gentoo-2-67c8b060271109f68d8b0a44de61d297ddfbe2e7.zip |
Diffstat (limited to 'x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild')
-rw-r--r-- | x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild b/x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild index e7ddd016f71a..e52cdd338a63 100644 --- a/x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild +++ b/x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild @@ -1,39 +1,36 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild,v 1.18 2005/04/14 20:36:13 lu_zero Exp $ - -inherit gnuconfig +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkDPS/gtkDPS-0.3.4.ebuild,v 1.1 2003/07/28 21:29:01 mholzer Exp $ IUSE="nls" +S=${WORKDIR}/${P} DESCRIPTION="Set of functions, objects and widgets to use DPS easily with GTK" SRC_URI="ftp://ftp.gyve.org/pub/${PN}/${P}.tar.gz" HOMEPAGE="http://www.gyve.org/gtkDPS/" LICENSE="GPL-2 LGPL-2" SLOT="0" -KEYWORDS="x86 sparc alpha ppc amd64 ia64" +KEYWORDS="~x86 ~sparc" -DEPEND="virtual/libc +DEPEND="virtual/glibc =x11-libs/gtk+-1.2* - virtual/x11 - nls? ( sys-devel/gettext )" + >=app-text/dgs-0.5.9.1" -src_compile() { - # needed for alpha and amd64 ... but run everywhere - gnuconfig_update || die "gnuconfig_update failed" +RDEPEND="nls? ( sys-devel/gettext )" - if ! use nls ; then +src_compile() { + if [ -z "`use nls`" ] ; then myconf="--disable-nls" fi ./configure --prefix=/usr --host=${CHOST} \ --with-x --with-dps $myconf || die - #Very ugly workaround - use nls && echo '#define LOCALEDIR "/usr/share/locale"' >> config.h make || die + } src_install () { + make prefix=${D}/usr install || die dodoc COPYING* ChangeLog GTKDPS-VERSION HACKING NEWS README TODO } |