diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-10-19 07:04:21 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-10-19 07:04:21 +0000 |
commit | ba370d1f43070ec3de20c0293fb5f8128d3da67a (patch) | |
tree | 0b15d4dfb88a168d4c7685924d13643298f6a44d /x11-misc/hotkeys | |
parent | cleanup (diff) | |
download | gentoo-2-ba370d1f43070ec3de20c0293fb5f8128d3da67a.tar.gz gentoo-2-ba370d1f43070ec3de20c0293fb5f8128d3da67a.tar.bz2 gentoo-2-ba370d1f43070ec3de20c0293fb5f8128d3da67a.zip |
xosd detection fix
Diffstat (limited to 'x11-misc/hotkeys')
-rw-r--r-- | x11-misc/hotkeys/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/hotkeys/hotkeys-0.5.5.ebuild | 12 |
2 files changed, 10 insertions, 9 deletions
diff --git a/x11-misc/hotkeys/ChangeLog b/x11-misc/hotkeys/ChangeLog index 3deb3c5c7213..0ae59d0d50ec 100644 --- a/x11-misc/hotkeys/ChangeLog +++ b/x11-misc/hotkeys/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for x11-misc/hotkeys # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/hotkeys/ChangeLog,v 1.3 2002/09/26 07:44:17 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/hotkeys/ChangeLog,v 1.4 2002/10/19 07:04:21 seemant Exp $ *hotkeys-0.5.5.ebuild (11 Sep 2002) + 19 Oct 2002; Seemant Kulleen <seemant@gentoo.org> hotkeys-0.5.5.ebuild : + + configure option which allows xosd-0.7.0 detection in configure. Fix + thanks to: pickerodt@wiwi.uni-marburg.de (S. Pickerodt) in bug #9325. + 26 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> hotkeys-0.5.5.ebuild : Updated SRC_URI since 0.5.5 is a custom made package. diff --git a/x11-misc/hotkeys/hotkeys-0.5.5.ebuild b/x11-misc/hotkeys/hotkeys-0.5.5.ebuild index ebff38320c07..b29edd01089e 100644 --- a/x11-misc/hotkeys/hotkeys-0.5.5.ebuild +++ b/x11-misc/hotkeys/hotkeys-0.5.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/hotkeys/hotkeys-0.5.5.ebuild,v 1.3 2002/10/04 06:43:11 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/hotkeys/hotkeys-0.5.5.ebuild,v 1.4 2002/10/19 07:04:21 seemant Exp $ NAME="hotkeys" S=${WORKDIR}/${P} @@ -13,10 +13,9 @@ SLOT="0" KEYWORDS="x86 sparc sparc64" DEPEND="virtual/x11 - virtual/glibc dev-libs/libxml2 >=sys-libs/db-3.2.3 - =x11-libs/xosd-0.7.0" + >x11-libs/xosd-0.7.0" RDEPEND="${DEPEND}" @@ -27,12 +26,10 @@ src_unpack() { } src_compile() { - ./configure --host=${CHOST} \ - --prefix=/usr \ - --mandir=/usr/share/man \ + econf \ --with-xosd-lib=/usr/lib/xosd-0.7.0 \ --with-xosd-inc=/usr/include/xosd-0.7.0 \ - --sysconfdir=/etc || die "./configure failed" + || die "./configure failed" emake || die } @@ -40,4 +37,3 @@ src_install () { make DESTDIR=${D} install || die dodoc AUTHORS BUGS ChangeLog COPYING README TODO } - |