diff options
author | Chuck Short <zul@gentoo.org> | 2004-03-06 02:22:30 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2004-03-06 02:22:30 +0000 |
commit | 731589bf8dafa5eb2334c5de2df399616f544832 (patch) | |
tree | c3834657276a240529d498bcc95d3ea13d0ac593 /net-irc/unrealircd | |
parent | Initial import. (Manifest recommit) (diff) | |
download | gentoo-2-731589bf8dafa5eb2334c5de2df399616f544832.tar.gz gentoo-2-731589bf8dafa5eb2334c5de2df399616f544832.tar.bz2 gentoo-2-731589bf8dafa5eb2334c5de2df399616f544832.zip |
Added sed to fix DPATH and SPATH.
Diffstat (limited to 'net-irc/unrealircd')
-rw-r--r-- | net-irc/unrealircd/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/unrealircd/Manifest | 4 | ||||
-rw-r--r-- | net-irc/unrealircd/unrealircd-3.2_rc1.ebuild | 5 |
3 files changed, 10 insertions, 4 deletions
diff --git a/net-irc/unrealircd/ChangeLog b/net-irc/unrealircd/ChangeLog index 114fae513be8..979995df106d 100644 --- a/net-irc/unrealircd/ChangeLog +++ b/net-irc/unrealircd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/unrealircd # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/ChangeLog,v 1.6 2004/03/05 02:17:44 zul Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/ChangeLog,v 1.7 2004/03/06 02:22:12 zul Exp $ + + 05 Mar 2004; Chuck Short <zul@gentoo.org> unrealircd-3.2_rc1.ebuild: + DPATH and SPATH is hardcoded with the PORTDIR_TMP. Closes #42396. 04 Mar 2004; Chuck Short <zul@gentoo.org> unrealircd-3.2_rc1.ebuild: Ebuild improvements. Closes #42396. diff --git a/net-irc/unrealircd/Manifest b/net-irc/unrealircd/Manifest index 0e00a9a62dd0..195d4f8174b8 100644 --- a/net-irc/unrealircd/Manifest +++ b/net-irc/unrealircd/Manifest @@ -1,7 +1,7 @@ -MD5 c464c60aa768db325a8a07c49a2406af unrealircd-3.2_rc1.ebuild 2772 +MD5 de87cd2eb466de8de6c06d1b8ef8c044 unrealircd-3.2_rc1.ebuild 2897 MD5 e8ec5f3f341ab6c4146ca830ec27c456 unrealircd-3.1.5.1.ebuild 1950 MD5 32fa593bf9497733cf19aecc68606f40 unrealircd-3.1.6.ebuild 1954 -MD5 53696248249aea7eca02d2a8f9e755dd ChangeLog 1026 +MD5 cab5bed5fba186fa462852694d88f455 ChangeLog 1166 MD5 44c39c6ad372a8e5a5e7ee3311f703a7 metadata.xml 160 MD5 2faabd524feebdf184243497848c4da9 files/unrealircd.confd 517 MD5 0e5e4e0c025911074b2673b9a040aa57 files/digest-unrealircd-3.1.6 68 diff --git a/net-irc/unrealircd/unrealircd-3.2_rc1.ebuild b/net-irc/unrealircd/unrealircd-3.2_rc1.ebuild index b48a733e5d28..9b4068b0279e 100644 --- a/net-irc/unrealircd/unrealircd-3.2_rc1.ebuild +++ b/net-irc/unrealircd/unrealircd-3.2_rc1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.2_rc1.ebuild,v 1.2 2004/03/05 02:17:44 zul Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.2_rc1.ebuild,v 1.3 2004/03/06 02:22:12 zul Exp $ MY_P=Unreal3.2-RC1 DESCRIPTION="aimed to be an advanced (not easy) IRCd" @@ -58,6 +58,9 @@ src_compile() { econf ${myconf} || die + # DPATH and SPATH is hardcoded in include/setup.h + sed -i 's:/var/tmp/portage/unrealircd-3.2_rc1/image/::' include/setup.h + emake || die } |