diff options
author | Ian Leitch <port001@gentoo.org> | 2005-02-24 18:17:29 +0000 |
---|---|---|
committer | Ian Leitch <port001@gentoo.org> | 2005-02-24 18:17:29 +0000 |
commit | dc69b3699850531c28a705a4dff070e45ba08447 (patch) | |
tree | 4dd1942554578c348c69b8716939ddd57e43a216 /app-emulation/pearpc | |
parent | Updated metadata. (diff) | |
download | gentoo-2-dc69b3699850531c28a705a4dff070e45ba08447.tar.gz gentoo-2-dc69b3699850531c28a705a4dff070e45ba08447.tar.bz2 gentoo-2-dc69b3699850531c28a705a4dff070e45ba08447.zip |
append -Wl,-z,now to ldflags, #75660. Cleaned out old versions.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'app-emulation/pearpc')
-rw-r--r-- | app-emulation/pearpc/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/pearpc/files/digest-pearpc-0.2.0 | 1 | ||||
-rw-r--r-- | app-emulation/pearpc/files/digest-pearpc-0.3.0 | 1 | ||||
-rw-r--r-- | app-emulation/pearpc/pearpc-0.2.0.ebuild | 60 | ||||
-rw-r--r-- | app-emulation/pearpc/pearpc-0.3.0.ebuild | 92 | ||||
-rw-r--r-- | app-emulation/pearpc/pearpc-0.3.1.ebuild | 11 |
6 files changed, 12 insertions, 158 deletions
diff --git a/app-emulation/pearpc/ChangeLog b/app-emulation/pearpc/ChangeLog index 88fbf62ee76b..e9148a3373e0 100644 --- a/app-emulation/pearpc/ChangeLog +++ b/app-emulation/pearpc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/pearpc # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/pearpc/ChangeLog,v 1.7 2005/01/01 14:15:09 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/pearpc/ChangeLog,v 1.8 2005/02/24 18:17:29 port001 Exp $ + + 24 Feb 2005; <port001@gentoo.org> pearpc-0.3.1.ebuild: + append -Wl,-z,now to ldflags, #75660. Cleaned out old versions. 22 Sep 2004; Ian Leitch <port001@gentoo.org> pearpc-0.3.1.ebuild: Install ifppc_up/down.setuid. Provide a simple script to create disk images. diff --git a/app-emulation/pearpc/files/digest-pearpc-0.2.0 b/app-emulation/pearpc/files/digest-pearpc-0.2.0 deleted file mode 100644 index b1889ff0fe2a..000000000000 --- a/app-emulation/pearpc/files/digest-pearpc-0.2.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 35820dba65afd73728451c94b4903a4a pearpc-0.2.0.tar.bz2 547558 diff --git a/app-emulation/pearpc/files/digest-pearpc-0.3.0 b/app-emulation/pearpc/files/digest-pearpc-0.3.0 deleted file mode 100644 index c9ac63c607e7..000000000000 --- a/app-emulation/pearpc/files/digest-pearpc-0.3.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 f14f5a6dd42a7e5e715f59965f1c25a2 pearpc-0.3.0.tar.bz2 629123 diff --git a/app-emulation/pearpc/pearpc-0.2.0.ebuild b/app-emulation/pearpc/pearpc-0.2.0.ebuild deleted file mode 100644 index 8ac5f1ec3081..000000000000 --- a/app-emulation/pearpc/pearpc-0.2.0.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/pearpc/pearpc-0.2.0.ebuild,v 1.4 2005/01/01 14:15:09 eradicator Exp $ - -IUSE="qt jit" - -DESCRIPTION="PowerPC Architecture Emulator" -HOMEPAGE="http://pearpc.sourceforge.net/" -SRC_URI="mirror://sourceforge/pearpc/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~ppc" - -DEPEND="x86? ( dev-lang/nasm )" - -RDEPEND="virtual/x11 - media-libs/libmng - media-libs/jpeg - media-libs/libpng - sys-libs/zlib - media-libs/freetype - qt? ( >=x11-libs/qt-3.1.1 )" - -src_compile() { - local myconf - myconf="--enable-release" - - use jit && myconf="${myconf} --enable-cpu=jitc_x86" - if use qt; then - myconf="${myconf} --enable-gui=qt" - else - myconf="${myconf} --enable-gui=nogui" - fi - - econf ${myconf} || die "econf failed" - emake || die "emake failed" -} - -src_install() { - dobin src/ppc - dodoc ChangeLog AUTHORS COPYING README TODO - - dodir /usr/share/${P} - insinto /usr/share/${P} - doins scripts/ifppc_down scripts/ifppc_up - doins video.x - - insinto /usr/share/doc/${P} - sed -i -e "s:video.x:/usr/share/${P}/video.x:g" ppccfg.example - doins ppccfg.example -} - -pkg_postinst() { - echo - einfo "You will need to update your configuration files to point" - einfo "to the new location of video.x, which is now" - einfo "/usr/share/${P}/video.x" - echo -} diff --git a/app-emulation/pearpc/pearpc-0.3.0.ebuild b/app-emulation/pearpc/pearpc-0.3.0.ebuild deleted file mode 100644 index ac75d4d05a7b..000000000000 --- a/app-emulation/pearpc/pearpc-0.3.0.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/pearpc/pearpc-0.3.0.ebuild,v 1.2 2005/01/01 14:15:09 eradicator Exp $ - -IUSE="debug jit sdl" -#IUSE="debug qt gtk jit sdl" - -DESCRIPTION="PowerPC Architecture Emulator" -HOMEPAGE="http://pearpc.sourceforge.net/" -SRC_URI="mirror://sourceforge/pearpc/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" - -DEPEND="x86? ( dev-lang/nasm )" - -RDEPEND="virtual/x11 - media-libs/libmng - media-libs/jpeg - media-libs/libpng - sys-libs/zlib - media-libs/freetype - sdl? ( media-libs/libsdl )" -# gtk? ( >=x11-libs/gtk-2.0 ) -# qt? ( >=x11-libs/qt-3.1.1 )" - -DEFAULT_TO_X11=0 - -#pkg_setup() { -# if (use qt && use sdl) || (use qt && use gtk) || (use gtk && sdl) || (use gtk && use qt && use sdl); then -# ewarn -# ewarn "More than one frontend USE flags enabled, defaulting to X11 support." -# ewarn -# DEFAULT_TO_X11=1 -# fi -#} - -src_compile() { - local myconf - myconf="--enable-release" - - use jit && myconf="${myconf} --enable-cpu=jitc_x86" - - if use debug; then - myconf="${myconf} --enable-debug" - else - myconf="${myconf} --disable-debug" - fi - - if [ $DEFAULT_TO_X11 = 1 ]; then - myconf="${myconf} --enable-ui=x11" - else - if use sdl; then - myconf="${myconf} --enable-ui=sdl" -# elif use qt; then -# myconf="${myconf} --enable-ui=qt" -# elif use gtk; then -# myconf="${myconf} --enable-ui=gtk" - else - myconf="${myconf} --enable-ui=x11" - fi - fi - - econf ${myconf} || die "econf failed" - emake || die "emake failed" -} - -src_install() { - dobin src/ppc - dodoc ChangeLog AUTHORS COPYING README TODO - - dodir /usr/share/${P} - insinto /usr/share/${P} - doins scripts/ifppc_down scripts/ifppc_up - doins video.x - - insinto /usr/share/doc/${P} - sed -i -e "s:video.x:/usr/share/${P}/video.x:g" ppccfg.example - doins ppccfg.example -} - -pkg_postinst() { - echo - einfo "You will need to update your configuration files to point" - einfo "to the new location of video.x, which is now" - einfo "/usr/share/${P}/video.x" - echo - einfo "Also, be sure to check /usr/share/doc/${P}/ppccfg.example" - einfo "for new configuration options." - echo -} diff --git a/app-emulation/pearpc/pearpc-0.3.1.ebuild b/app-emulation/pearpc/pearpc-0.3.1.ebuild index ee53945f9a5d..9cae6f9b371a 100644 --- a/app-emulation/pearpc/pearpc-0.3.1.ebuild +++ b/app-emulation/pearpc/pearpc-0.3.1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/pearpc/pearpc-0.3.1.ebuild,v 1.3 2005/01/01 14:15:09 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/pearpc/pearpc-0.3.1.ebuild,v 1.4 2005/02/24 18:17:29 port001 Exp $ + +inherit flag-o-matic IUSE="debug jit sdl" #IUSE="debug qt gtk jit sdl" @@ -28,14 +30,17 @@ RDEPEND="virtual/x11 DEFAULT_TO_X11=0 -#pkg_setup() { +pkg_setup() { + + append-ldflags -Wl,-z,now + # if (use qt && use sdl) || (use qt && use gtk) || (use gtk && sdl) || (use gtk && use qt && use sdl); then # ewarn # ewarn "More than one frontend USE flags enabled, defaulting to X11 support." # ewarn # DEFAULT_TO_X11=1 # fi -#} +} src_compile() { local myconf |