diff options
36 files changed, 66 insertions, 776 deletions
diff --git a/dev-util/subversion/files/digest-subversion-0.9_pre1 b/dev-util/subversion/files/digest-subversion-0.9_pre1 deleted file mode 100644 index 46cc0c2f9c7a..000000000000 --- a/dev-util/subversion/files/digest-subversion-0.9_pre1 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 12262c64fcd64b772e7cffad8e4d0ebc db-4.0.14.tar.gz 2701799 -MD5 10c84c06700d841a2f50a7e49baa742b autoconf-2.52.tar.bz2 632887 -MD5 e3db232e152b223cc35b1f230f440e8b apr-subversion-200202081402.tar.bz2 597013 -MD5 d98fb1266227745c451e073567e64043 apr-util-subversion-200202081402.tar.bz2 152347 -MD5 1197c79b62fb8554ab32c351c582a4fc httpd-subversion-200202081616.tar.bz2 2243209 -MD5 acd8a1a6e5b4131f7a00d501d15a4810 svn-200202081440.tar.bz2 3419930 diff --git a/dev-util/subversion/subversion-0.9_pre1.ebuild b/dev-util/subversion/subversion-0.9_pre1.ebuild deleted file mode 100644 index 12714e704fcd..000000000000 --- a/dev-util/subversion/subversion-0.9_pre1.ebuild +++ /dev/null @@ -1,251 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/subversion-0.9_pre1.ebuild,v 1.3 2002/07/11 06:30:25 drobbins Exp $ - -S=${WORKDIR}/svn -S_APACHE=${WORKDIR}/httpd-2.0 -S_APR=${WORKDIR}/apr -S_APRUTIL=${WORKDIR}/apr-util -S_AUTOCONF=${WORKDIR}/autoconf-2.52 -S_BDB=${WORKDIR}/db-4.0.14/build_unix -I_APACHE=${WORKDIR}/tmpinstall_httpd -I_AUTOCONF=${WORKDIR}/tmpinstall_autoconf-2.52 -I_BDB=${WORKDIR}/tmpinstall_db-4.0.14 -I_SVN=${WORKDIR}/tmpinstall_svn - -DESCRIPTION="A compelling replacement for CVS" -SRC_URI="http://www.sleepycat.com/update/4.0.14/db-4.0.14.tar.gz - ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.52.tar.bz2 - http://www.gbevin.com/gentoo/apr-subversion-200202081402.tar.bz2 - http://www.gbevin.com/gentoo/apr-util-subversion-200202081402.tar.bz2 - http://www.gbevin.com/gentoo/httpd-subversion-200202081616.tar.bz2 - http://www.gbevin.com/gentoo/svn-200202081440.tar.bz2" -HOMEPAGE="http://subversion.tigris.org/" - -DEPEND="virtual/glibc - >=dev-lang/python-2.0 - >=sys-apps/diffutils-2.7.7 - >=sys-devel/libtool-1.4.1-r1 - >=sys-devel/bison-1.28-r3 - >=sys-devel/m4-1.4o-r2 - >=net-misc/neon-0.18.5" -RDEPEND="virtual/glibc - >=dev-lang/python-2.0 - >=sys-apps/diffutils-2.7.7 - >=sys-devel/m4-1.4o-r2 - >=net-misc/neon-0.18.5" - -src_bootstrap() { - cd ${WORKDIR} - - # bootstrap subversion from version 0.8.0 - unpack ${DISTDIR}/subversion-r909.tar.gz - cd ${WORKDIR}/subversion-r909 - ./configure \ - --with-berkeley-db=${I_BDB} \ - --enable-maintainer-mode \ - --disable-shared - emake || die "make of subversion bootstrap failed" - - # get latest subversion version from cvs - cd ${WORKDIR} - subversion-r909/subversion/clients/cmdline/svn checkout http://svn.collab.net/repos/svn/trunk -d svn -} - -src_compile_bdb() { - # configure berkeley db - cd ${S_BDB} - ../dist/configure \ - --prefix=/usr/svn \ - --mandir=/usr/svn/share/man \ - --infodir=/usr/svn/share/info \ - --datadir=/usr/svn/share \ - --localstatedir=/var/lib \ - --host=${CHOST} || die "../dist/configure of berkeley db failed" - # build berkeley db - emake || die "make of berkeley db failed" - # install temporary version of berkeley db - make prefix=${I_BDB} install || die "temporary installation of berkeley db failed" -} - -src_compile_apache() { - # copy the apr and apr-util dirs - rm -rf ${S_APACHE}/srclib/apr ${S_APACHE}/srclib/apr-util - cp -a ${S_APR} ${S_APACHE}/srclib/apr - cp -a ${S_APRUTIL} ${S_APACHE}/srclib/apr-util - - # configure apache - cd ${S_APACHE} - ./buildconf - ./configure \ - --prefix=/usr/svn \ - --mandir=/usr/svn/share/man \ - --infodir=/usr/svn/share/info \ - --datadir=/usr/svn/share \ - --localstatedir=/var/lib \ - --host=${CHOST} \ - --enable-so \ - --enable-dav \ - --with-dbm=db4 \ - --with-berkeley-db=${I_BDB} \ - --enable-maintainer-mode || die "./configure of apache failed" - make depend - # fix the apache sources to correctly work with LD_LIBRARY_PATH - mv srclib/pcre/Makefile srclib/pcre/Makefile_orig - sed -e "s#./dftables#LD_LIBRARY_PATH=\"${LD_LIBRARY_PATH}\" ./dftables#" \ - srclib/pcre/Makefile_orig > srclib/pcre/Makefile - mv server/Makefile server/Makefile_orig - sed -e "s#./gen_test_char#LD_LIBRARY_PATH=\"${LD_LIBRARY_PATH}\" ./gen_test_char#" \ - server/Makefile_orig > server/Makefile - # build apache - emake || die "make of apache failed" - # install temporary version of apache - make prefix=${I_APACHE} install || die "temporary installation of apache failed" - # change the paths in apxs to point to the temporarly installed version of apache - # this will make subversions dav module install there - mv ${I_APACHE}/bin/apxs ${I_APACHE}/bin/apxs_orig - sed -e "s#/usr/svn#${I_APACHE}#" \ - ${I_APACHE}/bin/apxs_orig > ${I_APACHE}/bin/apxs - chmod +x ${I_APACHE}/bin/apxs -} - -src_compile_autoconf() { - # configure autoconf - cd ${S_AUTOCONF} - ./configure \ - --prefix=${I_AUTOCONF} \ - --infodir=${I_AUTOCONF}/share/info \ - --mandir=${I_AUTOCONF}/share/man \ - --target=${CHOST} || die "./configure of autoconf failed" - # build autoconf - emake || die "make of autoconf failed" - # install temporary version of autoconf - make install || die "temporary installation of autoconf failed" -} - -src_compile_svn() { - cd ${S} - # create a copy of the most recent apr and apr-utils sources - rm -rf apr apr-util - cp -a ${S_APR} apr - cp -a ${S_APRUTIL} apr-util - # generate the configure scripts - sh ./autogen.sh || die "autoconf of subversion failed" - # configure subversion - # have to install in temporary location first and can't sue DESTDIR - # with make install since otherwise the libraries are wrongly installed - ./configure \ - --prefix=${I_SVN} \ - --with-berkeley-db=${I_BDB} \ - --with-neon=/usr \ - --with-apxs=${I_APACHE}/bin/apxs \ - --enable-maintainer-mode || die "./configure of subversion failed" - # build subversion - emake LD_LIBRARY_PATH="${I_BDB}/lib" || die "make of subversion failed" - # install temporary version of subversion - export LD_LIBRARY_PATH="${I_SVN}/lib:$LD_LIBRARY_PATH" - make LD_LIBRARY_PATH="${I_BDB}/lib:${I_APACHE}/lib:${I_SVN}/lib" install || die "temporary installation of subversion failed" -} - -src_compile() { - src_compile_bdb - # make the system pick up the installed berkeley db libs before others - export LD_LIBRARY_PATH="${I_BDB}/lib" - - src_compile_apache - # make the system have access to the cvs head libraries of apache 2.0 - export LD_LIBRARY_PATH="${I_APACHE}/lib:$LD_LIBRARY_PATH" - - src_compile_autoconf - # set the correct paths so that this new version of autoconf will be picked up instead - # of the old version that gentoo uses by default - export PATH="$I_AUTOCONF/bin:$PATH" - - src_compile_svn -} - -src_install () { - # copy the prior temporary installs to the image dir - mkdir -p ${D}/usr/svn - mkdir -p ${D}/usr/svn/lib - cp -av ${I_BDB}/lib/* ${D}/usr/svn/lib || die "installation of berkeley db failed" - cp -av ${I_APACHE}/* ${D}/usr/svn || die "installation of apache failed" - cp -av ${I_SVN}/* ${D}/usr/svn || die "installation of subversion failed" - - # install documentation - dodoc BUGS COMMITTERS COPYING HACKING IDEAS INSTALL PORTING README - cd notes - for f in *.txt - do - dodoc ${f} - done - - # remove portage /var/tmp paths from files - cd ${D}/usr/svn - for x in bin/apxs \ - bin/apu-config \ - bin/apr-config \ - build/config_vars.mk \ - conf/highperformance-std.conf \ - conf/highperformance.conf \ - conf/httpd-std.conf \ - conf/httpd.conf \ - conf/ssl-std.conf \ - conf/ssl.conf \ - conf/httpd.conf.bak \ - lib/libsvn_delta.la \ - lib/libsvn_ra_dav.la \ - lib/libexpat.la \ - lib/libsvn_subr.la \ - lib/libaprutil.la \ - lib/libsvn_ra_local.la \ - lib/libsvn_repos.la \ - lib/libapr.la \ - lib/libsvn_client.la \ - lib/libsvn_fs.la \ - lib/libsvn_ra.la \ - lib/libsvn_wc.la - do - mv ${x} ${x}_orig - sed -e "s#/var/tmp/portage/subversion-0.9_pre1/work/tmpinstall_svn#/usr/svn#g" \ - -e "s#/var/tmp/portage/subversion-0.9_pre1/work/tmpinstall_httpd#/usr/svn#g" \ - -e "s#/var/tmp/portage/subversion-0.9_pre1/work/tmpinstall_db-4.0.14#/usr/svn#g" \ - ${x}_orig > ${x} - rm ${x}_orig - done - - # add the subversion path to the apache config - cat << ENDL >> ${D}/usr/svn/conf/httpd.conf -<Location /svn/repos> - DAV svn - SVNPath /var/lib/svn -</Location> -ENDL - - # setup gentoo to make using subversion easier - mkdir -p ${D}/var/lib/svn - mkdir -p ${D}/usr/svn/logs - touch ${D}/usr/svn/logs/.keep - insinto /usr/bin - dosym /usr/svn/bin/svn /usr/bin/svn - dosym /usr/svn/bin/svnadmin /usr/bin/svnadmin - dosym /usr/svn/bin/svnlook /usr/bin/svnlook - insinto /etc/env.d - echo "LDPATH=/usr/svn/lib" > ${D}/etc/env.d/10subversion -} - -pkg_config() { - einfo ">>> Initializing the database ..." - if [ -f /var/lib/svn/db ] ; then - echo "A subversion repository already exists and I will not overwrite it." - echo "Delete /var/lib/svn first if you're sure you want to have a clean version." - else - einfo ">>> Populating repository directory ..." - # create initial repository - LD_LIBRARY_PATH="/usr/svn/lib:$LD_LIBRARY_PATH" /usr/svn/bin/svnadmin create /var/lib/svn - - einfo ">>> Setting repository permissions ..." - chown -Rf nobody.nobody /var/lib/svn - chmod -Rf 755 /var/lib/svn - fi -} diff --git a/gnome-base/ORBit/ORBit-0.5.14-r1.ebuild b/gnome-base/ORBit/ORBit-0.5.14-r1.ebuild deleted file mode 100644 index a2852d42c374..000000000000 --- a/gnome-base/ORBit/ORBit-0.5.14-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit/ORBit-0.5.14-r1.ebuild,v 1.5 2002/07/11 06:30:25 drobbins Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A high-performance, lightweight CORBA ORB aiming for CORBA 2.2 compliance" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.labs.redhat.com/orbit/" - -DEPEND="virtual/glibc - nls? ( sys-devel/gettext ) - >=sys-apps/tcp-wrappers-7.6 - =dev-libs/glib-1.2*" - -RDEPEND="virtual/glibc - =dev-libs/glib-1.2*" - - -src_compile() { - if [ -z "`use nls`" ] ; then - myconf="--disable-nls" - fi - - # Libtoolize to fix "relink bug" in older libtool's distributed - # with packages. - libtoolize --copy --force - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - $myconf || die - - make || die # Doesn't work with -j 4 (hallski) -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - infodir=${D}/usr/share/info \ - localstatedir=${D}/var/lib \ - install || die - - dodoc AUTHORS COPYING* ChangeLog README NEWS TODO - dodoc docs/*.txt docs/IDEA1 - - docinto idl - cd libIDL - dodoc AUTHORS BUGS COPYING NEWS README* - - docinto popt - cd ../popt - dodoc CHANGES COPYING README - - cd ${D}/usr/lib - patch -p0 < ${FILESDIR}/libIDLConf.sh-gentoo.diff -} - diff --git a/gnome-base/ORBit/ORBit-0.5.14-r2.ebuild b/gnome-base/ORBit/ORBit-0.5.14-r2.ebuild index b29fa27ebf98..e25d98e786aa 100644 --- a/gnome-base/ORBit/ORBit-0.5.14-r2.ebuild +++ b/gnome-base/ORBit/ORBit-0.5.14-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit/ORBit-0.5.14-r2.ebuild,v 1.3 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit/ORBit-0.5.14-r2.ebuild,v 1.4 2002/07/17 10:13:15 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="A high-performance, lightweight CORBA ORB aiming for CORBA 2.2 compliance" @@ -15,6 +15,9 @@ DEPEND="virtual/glibc RDEPEND="virtual/glibc =dev-libs/glib-1.2*" +SLOT="0" +LICENSE="GPL" +KEYWORDS="x86" src_compile() { if [ -z "`use nls`" ] ; then diff --git a/gnome-base/ORBit/ORBit-0.5.14.ebuild b/gnome-base/ORBit/ORBit-0.5.14.ebuild deleted file mode 100644 index 550134981c50..000000000000 --- a/gnome-base/ORBit/ORBit-0.5.14.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit/ORBit-0.5.14.ebuild,v 1.3 2002/07/11 06:30:25 drobbins Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A high-performance, lightweight CORBA ORB aiming for CORBA 2.2 compliance" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.labs.redhat.com/orbit/" - -DEPEND="virtual/glibc - nls? ( sys-devel/gettext ) - >=sys-apps/tcp-wrappers-7.6 - =dev-libs/glib-1.2*" - -RDEPEND="virtual/glibc - =dev-libs/glib-1.2*" - - -src_compile() { - if [ -z "`use nls`" ] ; then - myconf="--disable-nls" - fi - - # Libtoolize to fix "relink bug" in older libtool's distributed - # with packages. - libtoolize --copy --force - aclocal - autoconf - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - $myconf || die - - make || die # Doesn't work with -j 4 (hallski) -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/lib \ - install || die - - dodoc AUTHORS COPYING* ChangeLog README NEWS TODO - dodoc docs/*.txt docs/IDEA1 - - docinto idl - cd libIDL - dodoc AUTHORS BUGS COPYING NEWS README* - - docinto popt - cd ../popt - dodoc CHANGES COPYING README - - cd ${D}/usr/lib - patch -p0 < ${FILESDIR}/libIDLConf.sh-gentoo.diff -} - diff --git a/gnome-base/ORBit/ORBit-0.5.16.ebuild b/gnome-base/ORBit/ORBit-0.5.16.ebuild index 305f1edd31aa..b5b1aa4137bc 100644 --- a/gnome-base/ORBit/ORBit-0.5.16.ebuild +++ b/gnome-base/ORBit/ORBit-0.5.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit/ORBit-0.5.16.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit/ORBit-0.5.16.ebuild,v 1.3 2002/07/17 10:13:15 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="A high-performance, lightweight CORBA ORB aiming for CORBA 2.2 compliance" @@ -15,6 +15,9 @@ DEPEND="virtual/glibc RDEPEND="virtual/glibc =dev-libs/glib-1.2*" +SLOT="0" +LICENSE="GPL" +KEYWORDS="x86 ppc" src_compile() { if [ -z "`use nls`" ] ; then diff --git a/gnome-base/ORBit/files/digest-ORBit-0.5.14 b/gnome-base/ORBit/files/digest-ORBit-0.5.14 deleted file mode 100644 index 7160a98a2936..000000000000 --- a/gnome-base/ORBit/files/digest-ORBit-0.5.14 +++ /dev/null @@ -1 +0,0 @@ -MD5 03d2b86a5ecad95fa0dced110b19fff6 ORBit-0.5.14.tar.gz 1336536 diff --git a/gnome-base/ORBit/files/digest-ORBit-0.5.14-r1 b/gnome-base/ORBit/files/digest-ORBit-0.5.14-r1 deleted file mode 100644 index 7160a98a2936..000000000000 --- a/gnome-base/ORBit/files/digest-ORBit-0.5.14-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 03d2b86a5ecad95fa0dced110b19fff6 ORBit-0.5.14.tar.gz 1336536 diff --git a/gnome-base/ORBit2/ORBit2-2.3.109.ebuild b/gnome-base/ORBit2/ORBit2-2.3.109.ebuild deleted file mode 100644 index f49e753dabcd..000000000000 --- a/gnome-base/ORBit2/ORBit2-2.3.109.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit2/ORBit2-2.3.109.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ - -# Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ -DEBUG="yes" -RESTRICT="nostrip" -# force debug information -CFLAGS="${CFLAGS} -g" -CXXFLAGS="${CXXFLAGS} -g" -LICENSE="GPL-2" -SLOT="2" - - -S=${WORKDIR}/${P} -DESCRIPTION="ORBit2 is a high-performance CORBA ORB" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/ORBit2/${P}.tar.bz2" -HOMEPAGE="http://www.gnome.org/" - - -RDEPEND=">=dev-libs/glib-2.0.0 - >=dev-libs/popt-1.6.3 - >=dev-libs/libIDL-0.7.4 - >=net-libs/linc-0.1.21" - -DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.12.0" -src_compile() { - local myconf -# libtoolize --copy --force - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --infodir=/usr/share/info \ - --localstatedir=/var/lib \ - --mandir=/usr/share/man \ - --enable-debug=yes ${myconf} || die "failed in configure" - emake || make || die "emake and make failed both. WHINE" -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - infodir=${D}/usr/share/info \ - mandir=${D}/usr/share/man \ - localstatedir=${D}/var/lib \ - install || die - - dodoc AUTHORS ChangeLog COPYING* README* HACKING INSTALL NEWS TODO MAINTAINERS -} diff --git a/gnome-base/ORBit2/ORBit2-2.3.110.ebuild b/gnome-base/ORBit2/ORBit2-2.3.110.ebuild deleted file mode 100644 index c9efbffd116d..000000000000 --- a/gnome-base/ORBit2/ORBit2-2.3.110.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit2/ORBit2-2.3.110.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ - -# Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ -DEBUG="yes" -RESTRICT="nostrip" -# force debug information -CFLAGS="${CFLAGS} -g" -CXXFLAGS="${CXXFLAGS} -g" -LICENSE="GPL-2" -SLOT="2" - - -S=${WORKDIR}/${P} -DESCRIPTION="ORBit2 is a high-performance CORBA ORB" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/ORBit2/${P}.tar.bz2" -HOMEPAGE="http://www.gnome.org/" - - -RDEPEND=">=dev-libs/glib-2.0.0 - >=dev-libs/popt-1.6.3 - >=dev-libs/libIDL-0.7.4 - >=net-libs/linc-0.1.21" - -DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.12.0" -src_compile() { - local myconf -# libtoolize --copy --force - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --infodir=/usr/share/info \ - --localstatedir=/var/lib \ - --mandir=/usr/share/man \ - --enable-debug=yes ${myconf} || die "failed in configure" - emake || make || die "emake and make failed both. WHINE" -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - infodir=${D}/usr/share/info \ - mandir=${D}/usr/share/man \ - localstatedir=${D}/var/lib \ - install || die - - dodoc AUTHORS ChangeLog COPYING* README* HACKING INSTALL NEWS TODO MAINTAINERS -} diff --git a/gnome-base/ORBit2/ORBit2-2.4.0-r1.ebuild b/gnome-base/ORBit2/ORBit2-2.4.0-r1.ebuild deleted file mode 100644 index 9379ecc38f86..000000000000 --- a/gnome-base/ORBit2/ORBit2-2.4.0-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit2/ORBit2-2.4.0-r1.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ - -inherit debug - -S=${WORKDIR}/${P} -DESCRIPTION="ORBit2 is a high-performance CORBA ORB" -SRC_URI="mirror://gnome/sources/ORBit2/${P}.tar.bz2" -HOMEPAGE="http://www.gnome.org/" - - -RDEPEND=">=dev-libs/glib-2.0.0 - >=dev-libs/popt-1.6.3 - >=dev-libs/libIDL-0.7.4 - >=net-libs/linc-0.5.0-r1" - -DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.12.0" -src_compile() { - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --infodir=/usr/share/info \ - --localstatedir=/var/lib \ - --mandir=/usr/share/man \ - --enable-debug=yes ${myconf} || die "failed in configure" - emake || make || die "emake and make failed both. WHINE" -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - infodir=${D}/usr/share/info \ - mandir=${D}/usr/share/man \ - localstatedir=${D}/var/lib \ - install || die - - dodoc AUTHORS ChangeLog COPYING* README* HACKING INSTALL NEWS TODO MAINTAINERS -} diff --git a/gnome-base/ORBit2/ORBit2-2.4.0-r2.ebuild b/gnome-base/ORBit2/ORBit2-2.4.0-r2.ebuild index be4113bc8915..ee07e7e79561 100644 --- a/gnome-base/ORBit2/ORBit2-2.4.0-r2.ebuild +++ b/gnome-base/ORBit2/ORBit2-2.4.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit2/ORBit2-2.4.0-r2.ebuild,v 1.3 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit2/ORBit2-2.4.0-r2.ebuild,v 1.4 2002/07/17 10:13:15 seemant Exp $ inherit debug inherit libtool @@ -17,6 +17,11 @@ RDEPEND=">=dev-libs/glib-2.0.4-r1 >=net-libs/linc-0.5.0-r2" DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.12.0" + +SLOT="0" +LICENSE="GPL" +KEYWORDS="x86 ppc" + src_compile() { elibtoolize ./configure --host=${CHOST} \ diff --git a/gnome-base/ORBit2/ORBit2-2.4.0.ebuild b/gnome-base/ORBit2/ORBit2-2.4.0.ebuild deleted file mode 100644 index e7690b1dbb3f..000000000000 --- a/gnome-base/ORBit2/ORBit2-2.4.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/ORBit2/ORBit2-2.4.0.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ - -# Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ -DEBUG="yes" -RESTRICT="nostrip" -# force debug information -CFLAGS="${CFLAGS} -g" -CXXFLAGS="${CXXFLAGS} -g" -LICENSE="GPL-2" -SLOT="2" - - -S=${WORKDIR}/${P} -DESCRIPTION="ORBit2 is a high-performance CORBA ORB" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/ORBit2/${P}.tar.bz2" -HOMEPAGE="http://www.gnome.org/" - - -RDEPEND=">=dev-libs/glib-2.0.0 - >=dev-libs/popt-1.6.3 - >=dev-libs/libIDL-0.7.4 - >=net-libs/linc-0.5.0" - -DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.12.0" -src_compile() { - local myconf -# libtoolize --copy --force - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --infodir=/usr/share/info \ - --localstatedir=/var/lib \ - --mandir=/usr/share/man \ - --enable-debug=yes ${myconf} || die "failed in configure" - emake || make || die "emake and make failed both. WHINE" -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - infodir=${D}/usr/share/info \ - mandir=${D}/usr/share/man \ - localstatedir=${D}/var/lib \ - install || die - - dodoc AUTHORS ChangeLog COPYING* README* HACKING INSTALL NEWS TODO MAINTAINERS -} diff --git a/gnome-base/ORBit2/files/digest-ORBit2-2.3.109 b/gnome-base/ORBit2/files/digest-ORBit2-2.3.109 deleted file mode 100644 index af8f4eb7e68e..000000000000 --- a/gnome-base/ORBit2/files/digest-ORBit2-2.3.109 +++ /dev/null @@ -1 +0,0 @@ -MD5 e18fb3dce4b87a075f119631e692ee93 ORBit2-2.3.109.tar.bz2 429801 diff --git a/gnome-base/ORBit2/files/digest-ORBit2-2.3.110 b/gnome-base/ORBit2/files/digest-ORBit2-2.3.110 deleted file mode 100644 index 89c1206a957b..000000000000 --- a/gnome-base/ORBit2/files/digest-ORBit2-2.3.110 +++ /dev/null @@ -1 +0,0 @@ -MD5 302dfd638348b950272aef8038f6d9b6 ORBit2-2.3.110.tar.bz2 430794 diff --git a/gnome-base/ORBit2/files/digest-ORBit2-2.4.0 b/gnome-base/ORBit2/files/digest-ORBit2-2.4.0 deleted file mode 100644 index d155be95f435..000000000000 --- a/gnome-base/ORBit2/files/digest-ORBit2-2.4.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 25eb93f5dae655db2806e6462a52a8ee ORBit2-2.4.0.tar.bz2 431841 diff --git a/gnome-base/ORBit2/files/digest-ORBit2-2.4.0-r1 b/gnome-base/ORBit2/files/digest-ORBit2-2.4.0-r1 deleted file mode 100644 index d155be95f435..000000000000 --- a/gnome-base/ORBit2/files/digest-ORBit2-2.4.0-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 25eb93f5dae655db2806e6462a52a8ee ORBit2-2.4.0.tar.bz2 431841 diff --git a/gnome-base/bonobo-activation/bonobo-activation-1.0.1.ebuild b/gnome-base/bonobo-activation/bonobo-activation-1.0.1.ebuild index 9065b352816c..fac7458f8947 100644 --- a/gnome-base/bonobo-activation/bonobo-activation-1.0.1.ebuild +++ b/gnome-base/bonobo-activation/bonobo-activation-1.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/bonobo-activation/bonobo-activation-1.0.1.ebuild,v 1.1 2002/06/19 17:00:44 stroke Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/bonobo-activation/bonobo-activation-1.0.1.ebuild,v 1.2 2002/07/17 10:13:15 seemant Exp $ inherit gnome2 @@ -10,6 +10,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.gnome.org/" LICENSE="GPL-2 LGPL-2.1" SLOT="0" +KEYWORDS="x86" RDEPEND=">=dev-libs/glib-2.0.4 >=dev-libs/libxml2-2.4.20 diff --git a/gnome-base/bonobo-activation/bonobo-activation-1.0.2.ebuild b/gnome-base/bonobo-activation/bonobo-activation-1.0.2.ebuild index 2b68613cc056..71311ca16bf0 100644 --- a/gnome-base/bonobo-activation/bonobo-activation-1.0.2.ebuild +++ b/gnome-base/bonobo-activation/bonobo-activation-1.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/bonobo-activation/bonobo-activation-1.0.2.ebuild,v 1.1 2002/06/22 03:59:25 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/bonobo-activation/bonobo-activation-1.0.2.ebuild,v 1.2 2002/07/17 10:13:15 seemant Exp $ inherit gnome2 @@ -8,8 +8,10 @@ S=${WORKDIR}/${P} DESCRIPTION="Gnome2 replacement for OAF" SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.gnome.org/" + LICENSE="GPL-2 LGPL-2.1" SLOT="0" +KEYWORDS="x86 ppc" RDEPEND=">=dev-libs/glib-2.0.4 >=dev-libs/libxml2-2.4.20 diff --git a/gnome-base/control-center/control-center-1.4.0.4-r1.ebuild b/gnome-base/control-center/control-center-1.4.0.4-r1.ebuild index 878ef53fdc78..18d0a2e8f78d 100644 --- a/gnome-base/control-center/control-center-1.4.0.4-r1.ebuild +++ b/gnome-base/control-center/control-center-1.4.0.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/control-center/control-center-1.4.0.4-r1.ebuild,v 1.3 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/control-center/control-center-1.4.0.4-r1.ebuild,v 1.4 2002/07/17 10:13:15 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="The GNOME control-center" @@ -8,6 +8,8 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz" HOMEPAGE="http://www.gnome.org/" SLOT="1" +LICENSE="GPL" +KEYWORDS="x86" RDEPEND=">=gnome-base/gnome-vfs-1.0.2-r1 >=media-libs/gdk-pixbuf-0.11.0-r1" diff --git a/gnome-base/control-center/control-center-1.4.0.5-r1.ebuild b/gnome-base/control-center/control-center-1.4.0.5-r1.ebuild index 4b27a1384a1a..e1e690f04a3f 100644 --- a/gnome-base/control-center/control-center-1.4.0.5-r1.ebuild +++ b/gnome-base/control-center/control-center-1.4.0.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/control-center/control-center-1.4.0.5-r1.ebuild,v 1.2 2002/06/23 23:16:09 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/control-center/control-center-1.4.0.5-r1.ebuild,v 1.3 2002/07/17 10:13:15 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="The GNOME control-center" @@ -8,6 +8,8 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.gnome.org/" SLOT="1" +LICENSE="GPL" +KEYWORDS="x86 ppc" RDEPEND=" ( >=gnome-base/gnome-vfs-1.0.4 diff --git a/gnome-base/control-center/control-center-2.0.0.ebuild b/gnome-base/control-center/control-center-2.0.0.ebuild index fd2323a8e309..6cbd67992535 100644 --- a/gnome-base/control-center/control-center-2.0.0.ebuild +++ b/gnome-base/control-center/control-center-2.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/control-center/control-center-2.0.0.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/control-center/control-center-2.0.0.ebuild,v 1.3 2002/07/17 10:13:15 seemant Exp $ inherit gnome2 @@ -10,6 +10,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.gnome.org/" SLOT="2" LICENSE="GPL-2" +KEYWORDS="x86" RDEPEND=">=x11-libs/gtk+-2.0.5 >=dev-libs/glib-2.0.3 diff --git a/gnome-base/gconf/files/digest-gconf-1.0.8-r2 b/gnome-base/gconf/files/digest-gconf-1.0.8-r2 deleted file mode 100644 index 94b9f10e773b..000000000000 --- a/gnome-base/gconf/files/digest-gconf-1.0.8-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 b0d662f3fa1dbab01796efe695577c74 GConf-1.0.8.tar.gz 1240140 diff --git a/gnome-base/gconf/files/digest-gconf-1.2.0 b/gnome-base/gconf/files/digest-gconf-1.2.0 deleted file mode 100644 index 04dc91a16097..000000000000 --- a/gnome-base/gconf/files/digest-gconf-1.2.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 9815ca4ee765e86047d0f096baf8783b GConf-1.2.0.tar.bz2 935782 diff --git a/gnome-base/gconf/files/digest-gconf-1.2.0-r1 b/gnome-base/gconf/files/digest-gconf-1.2.0-r1 deleted file mode 100644 index 04dc91a16097..000000000000 --- a/gnome-base/gconf/files/digest-gconf-1.2.0-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 9815ca4ee765e86047d0f096baf8783b GConf-1.2.0.tar.bz2 935782 diff --git a/gnome-base/gconf/files/digest-gconf-1.2.0-r2 b/gnome-base/gconf/files/digest-gconf-1.2.0-r2 deleted file mode 100644 index 04dc91a16097..000000000000 --- a/gnome-base/gconf/files/digest-gconf-1.2.0-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 9815ca4ee765e86047d0f096baf8783b GConf-1.2.0.tar.bz2 935782 diff --git a/gnome-base/gconf/gconf-1.0.8-r2.ebuild b/gnome-base/gconf/gconf-1.0.8-r2.ebuild deleted file mode 100644 index 9e298116aee5..000000000000 --- a/gnome-base/gconf/gconf-1.0.8-r2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.0.8-r2.ebuild,v 1.5 2002/07/11 06:30:25 drobbins Exp $ - -S=${WORKDIR}/GConf-${PV} -DESCRIPTION="Gconf" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/GConf/GConf-${PV}.tar.gz" -HOMEPAGE="http://www.gnome.org/" -RDEPEND=">=sys-libs/db-3.2.3h >=gnome-base/oaf-0.6.6-r1" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - >=dev-util/guile-1.4 - dev-util/indent" - -src_compile() { - local myconf - - libtoolize --copy --force - - use nls \ - || myconf="--disable-nls" \ - && mkdir intl \ - && touch intl/libgettext.h - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - ${myconf} || die - - make || die # Doesn't work with -j 4 (hallski) -} - -src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/lib \ - install || die - # gconf 1.0.8 seems to gets the perms wrong on this dir. - chmod 0755 ${D}/etc/gconf/gconf.xml.mandatory - # this fix closes bug #803 - dodoc AUTHORS COPYING ChangeLog NEWS README* TODO -} - -pkg_postinst() { - # this is to fix installations where the following dir - # has already been merged with incorrect permissions. - # We can remove this fix after gconf 1.0.8 is an ancient - # version. - if [ ! -e ${ROOT}/etc/gconf/gconf.xml.mandatory ] - then - #unmerge of older revisions nuke this one - mkdir -p ${ROOT}/etc/gconf/gconf.xml.mandatory - fi - chmod 0755 ${ROOT}/etc/gconf/gconf.xml.mandatory -} diff --git a/gnome-base/gconf/gconf-1.0.8-r3.ebuild b/gnome-base/gconf/gconf-1.0.8-r3.ebuild index 3d66347d69d4..288ad7590928 100644 --- a/gnome-base/gconf/gconf-1.0.8-r3.ebuild +++ b/gnome-base/gconf/gconf-1.0.8-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.0.8-r3.ebuild,v 1.3 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.0.8-r3.ebuild,v 1.4 2002/07/17 10:13:15 seemant Exp $ S=${WORKDIR}/GConf-${PV} DESCRIPTION="Gconf" @@ -8,6 +8,8 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/GConf/GConf-${PV}.tar.gz" HOMEPAGE="http://www.gnome.org/" SLOT="1" +LICENSE="LGPL-2.1" +KEYWORDS="x86 ppc" RDEPEND=">=sys-libs/db-3.2.3h nls? ( sys-devel/gettext )" diff --git a/gnome-base/gconf/gconf-1.2.0-r1.ebuild b/gnome-base/gconf/gconf-1.2.0-r1.ebuild deleted file mode 100644 index 379a971852ca..000000000000 --- a/gnome-base/gconf/gconf-1.2.0-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.2.0-r1.ebuild,v 1.1 2002/06/18 01:36:36 spider Exp $ - -inherit gnome2 - -MY_PN=GConf -S=${WORKDIR}/${MY_PN}-${PV} -DESCRIPTION="Gnome Configuration System and Daemon" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV}.tar.bz2 ftp://archive.progeny.com/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV}.tar.bz2" -HOMEPAGE="http://www.gnome.org/" - -SLOT="2" - -RDEPEND=">=dev-libs/glib-2.0.1 - >=gnome-base/ORBit2-2.4.0 - >=dev-libs/libxml2-2.4.17 - >=net-libs/linc-0.5.0" - -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.12.0" - -LIBTOOL_FIX="1" - -pkg_preinst () { - # hack hack - dodir /etc/gconf/gconf.xml.mandatory - dodir /etc/gconf/gconf.xml.defaults - touch ${D}/etc/gconf/gconf.xml.mandatory/.keep - touch ${D}/etc/gconf/gconf.xml.defaults/.keep - dodir /etc/env.d - echo 'CONFIG_PROTECT_MASK="/etc/gconf"' >${D}/etc/env.d/50gconf -} -DOCS="ABOUT-NLS AUTHORS ChangeLog COPYING README* INSTALL NEWS TODO" - - diff --git a/gnome-base/gconf/gconf-1.2.0-r2.ebuild b/gnome-base/gconf/gconf-1.2.0-r2.ebuild deleted file mode 100644 index 111ea5462da8..000000000000 --- a/gnome-base/gconf/gconf-1.2.0-r2.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.2.0-r2.ebuild,v 1.1 2002/06/28 07:16:45 spider Exp $ - -inherit gnome2 - -MY_PN=GConf -S=${WORKDIR}/${MY_PN}-${PV} -DESCRIPTION="Gnome Configuration System and Daemon" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV}.tar.bz2 ftp://archive.progeny.com/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV}.tar.bz2" -HOMEPAGE="http://www.gnome.org/" - -SLOT="2" - -RDEPEND=">=dev-libs/glib-2.0.1 - >=gnome-base/ORBit2-2.4.0 - >=dev-libs/libxml2-2.4.17 - >=net-libs/linc-0.5.0" - -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.12.0 - doc? ( dev-util/gtk-doc )" - -LIBTOOL_FIX="1" - -pkg_preinst () { - # hack hack - dodir /etc/gconf/gconf.xml.mandatory - dodir /etc/gconf/gconf.xml.defaults - touch ${D}/etc/gconf/gconf.xml.mandatory/.keep - touch ${D}/etc/gconf/gconf.xml.defaults/.keep - dodir /etc/env.d - echo 'CONFIG_PROTECT_MASK="/etc/gconf"' >${D}/etc/env.d/50gconf -} -DOCS="ABOUT-NLS AUTHORS ChangeLog COPYING README* INSTALL NEWS TODO" - - diff --git a/gnome-base/gconf/gconf-1.2.0-r3.ebuild b/gnome-base/gconf/gconf-1.2.0-r3.ebuild index 26dcc311b33e..7b333c08da04 100644 --- a/gnome-base/gconf/gconf-1.2.0-r3.ebuild +++ b/gnome-base/gconf/gconf-1.2.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.2.0-r3.ebuild,v 1.3 2002/07/07 23:58:00 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.2.0-r3.ebuild,v 1.4 2002/07/17 10:13:15 seemant Exp $ inherit gnome2 @@ -11,6 +11,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV HOMEPAGE="http://www.gnome.org/" LICENSE="LGPL-2.1" SLOT="2" +KEYWORDS="x86 ppc" RDEPEND=">=dev-libs/glib-2.0.1 >=gnome-base/ORBit2-2.4.0 diff --git a/gnome-base/gconf/gconf-1.2.0.ebuild b/gnome-base/gconf/gconf-1.2.0.ebuild deleted file mode 100644 index 30c424895fcb..000000000000 --- a/gnome-base/gconf/gconf-1.2.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.2.0.ebuild,v 1.1 2002/06/12 11:19:25 spider Exp $ - -inherit gnome2 - -MY_PN=GConf -S=${WORKDIR}/${MY_PN}-${PV} -DESCRIPTION="Gnome Configuration System and Daemon" -SRC_URI="ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV}.tar.bz2 ftp://archive.progeny.com/GNOME/pre-gnome2/sources/${MY_PN}/${MY_PN}-${PV}.tar.bz2" -HOMEPAGE="http://www.gnome.org/" - -SLOT="2" - -RDEPEND=">=dev-libs/glib-2.0.1 - >=gnome-base/ORBit2-2.4.0 - >=dev-libs/libxml2-2.4.17 - >=net-libs/linc-0.5.0" - -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.12.0" - -LIBTOOL_FIX="1" - -pkg_preinst () { - # hack hack - dodir /etc/gconf/gconf.xml.mandatory - dodir /etc/gconf/gconf.xml.defaults - touch ${D}/etc/gconf/gconf.xml.mandatory/.keep - touch ${D}/etc/gconf/gconf.xml.defaults/.keep - -} -DOCS="ABOUT-NLS AUTHORS ChangeLog COPYING README* INSTALL NEWS TODO" - - diff --git a/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r1.ebuild b/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r1.ebuild index 5ac5203724d9..b684dfd01471 100644 --- a/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r1.ebuild +++ b/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r1.ebuild,v 1.4 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r1.ebuild,v 1.5 2002/07/17 10:13:15 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="gnome-applets" @@ -16,27 +16,29 @@ DEPEND="${RDEPEND} >=app-text/scrollkeeper-0.2 >=dev-util/intltool-0.11" +SLOT="1" +LICENSE="GPL" +KEYWORDS="x86 ppc" + src_compile() { local myconf - if [ -z "`use nls`" ] - then - myconf="--disable-nls" - fi + use nls || myconf="--disable-nls" - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - ${myconf} || die + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die emake || die } src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/lib \ + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ install || die dodoc AUTHORS COPYING* ChangeLog NEWS README diff --git a/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r2.ebuild b/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r2.ebuild index b38aaf253abe..0aba027260f2 100644 --- a/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r2.ebuild +++ b/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r2.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-1.4.0.4-r2.ebuild,v 1.3 2002/07/17 10:13:15 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="gnome-applets" @@ -17,27 +17,29 @@ DEPEND="${RDEPEND} >=app-text/scrollkeeper-0.2 >=dev-util/intltool-0.11" +SLOT="1" +LICENSE="GPL" +KEYWORDs="x86" + src_compile() { local myconf - if [ -z "`use nls`" ] - then - myconf="--disable-nls" - fi + use nls || myconf="--disable-nls" - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - ${myconf} || die + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die emake || die } src_install() { - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/lib \ + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ install || die dodoc AUTHORS COPYING* ChangeLog NEWS README diff --git a/gnome-base/gnome-applets/gnome-applets-2.0.0-r1.ebuild b/gnome-base/gnome-applets/gnome-applets-2.0.0-r1.ebuild index fcf1709f2b0d..3222ea6cb96c 100644 --- a/gnome-base/gnome-applets/gnome-applets-2.0.0-r1.ebuild +++ b/gnome-base/gnome-applets/gnome-applets-2.0.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-2.0.0-r1.ebuild,v 1.1 2002/06/28 08:32:22 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-2.0.0-r1.ebuild,v 1.2 2002/07/17 10:13:15 seemant Exp $ inherit debug inherit libtool @@ -11,6 +11,7 @@ SRC_URI="mirror://gnome/sources/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.gnome.org/" SLOT="2" LICENSE="GPL-2 FDL-1.1" +KEYWORDS="x86" RDEPEND=">=x11-libs/gtk+-2.0.0 >=x11-libs/libwnck-0.14 diff --git a/gnome-base/gnome-applets/gnome-applets-2.0.0.ebuild b/gnome-base/gnome-applets/gnome-applets-2.0.0.ebuild index b6d550aa35d9..660d3662325c 100644 --- a/gnome-base/gnome-applets/gnome-applets-2.0.0.ebuild +++ b/gnome-base/gnome-applets/gnome-applets-2.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-2.0.0.ebuild,v 1.1 2002/06/10 23:46:58 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-2.0.0.ebuild,v 1.2 2002/07/17 10:13:15 seemant Exp $ # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ DEBUG="yes" @@ -16,6 +16,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/gnome/pre-gnome2/sources/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.gnome.org/" SLOT="2" LICENSE="GPL-2 FDL-1.1" +KEYWORDS="x86" RDEPEND=">=x11-libs/gtk+-2.0.0 >=x11-libs/libwnck-0.6 |