diff options
Diffstat (limited to 'dev-libs/qof')
-rw-r--r-- | dev-libs/qof/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/qof/files/qof-0.7.2-remove_spurious_CFLAGS.patch | 54 | ||||
-rw-r--r-- | dev-libs/qof/qof-0.7.2.ebuild | 34 |
3 files changed, 5 insertions, 89 deletions
diff --git a/dev-libs/qof/ChangeLog b/dev-libs/qof/ChangeLog index 81bda275eb5b..deaf35f50ab8 100644 --- a/dev-libs/qof/ChangeLog +++ b/dev-libs/qof/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/qof # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/qof/ChangeLog,v 1.18 2008/03/24 16:21:22 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/qof/ChangeLog,v 1.19 2008/03/24 20:13:21 opfer Exp $ + + 24 Mar 2008; Christian Faulhammer <opfer@gentoo.org> + -files/qof-0.7.2-remove_spurious_CFLAGS.patch, -qof-0.7.2.ebuild: + clean up 24 Mar 2008; Markus Meier <maekke@gentoo.org> qof-0.7.5.ebuild: amd64 stable, bug #205242 diff --git a/dev-libs/qof/files/qof-0.7.2-remove_spurious_CFLAGS.patch b/dev-libs/qof/files/qof-0.7.2-remove_spurious_CFLAGS.patch deleted file mode 100644 index 38d9e49ffcc6..000000000000 --- a/dev-libs/qof/files/qof-0.7.2-remove_spurious_CFLAGS.patch +++ /dev/null @@ -1,54 +0,0 @@ ---- /tmp/configure 2007-11-04 11:44:13.000000000 +0100 -+++ configure 2007-11-04 11:51:58.000000000 +0100 -@@ -26367,18 +26367,18 @@ - echo $ECHO_N "checking what extra warning flags to pass to the C compiler... $ECHO_C" >&6; } - if test ${GCC}x = yesx; then - warnFLAGS= -- CFLAGS="${CFLAGS} -g2 -Wall" -+ CFLAGS="${CFLAGS}" - # Check whether --enable-error-on-warning was given. - if test "${enable_error_on_warning+set}" = set; then - enableval=$enable_error_on_warning; case "${enableval}" in -- yes) warnFLAGS="${warnFLAGS} -Werror" ;; -+ yes) warnFLAGS="${warnFLAGS}" ;; - no) ;; - *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-error-on-warning" >&5 - echo "$as_me: error: bad value ${enableval} for --enable-error-on-warning" >&2;} - { (exit 1); exit 1; }; } ;; - esac - else -- warnFLAGS="${warnFLAGS} -Werror" -+ warnFLAGS="${warnFLAGS}" - fi - - GCC_VERSION=`${CC} -dumpversion` -@@ -26386,10 +26386,10 @@ - # This is gcc >= 3.x.x - if test `echo ${GCC_VERSION} | cut -d. -f2` -ge 4; then - # This is gcc >= 3.4.x -- warnFLAGS="${warnFLAGS} -Wdeclaration-after-statement" -+ warnFLAGS="${warnFLAGS}" - else if test `echo ${GCC_VERSION} | cut -d. -f1` -ge 4; then - # This is gcc == 4.x.x -- warnFLAGS="${warnFLAGS} -Wdeclaration-after-statement -Wno-pointer-sign" -+ warnFLAGS="${warnFLAGS}" - fi - fi - fi -@@ -26408,16 +26408,6 @@ - fi - - --if test "$GCC" = "yes" -a "$set_compile_warnings" != "no"; then -- warnFLAGS="$warnFLAGS -Wcast-align -Wsign-compare \ -- -Wmissing-prototypes -Wmissing-declarations -Werror -Wmissing-include-dirs \ -- -Wstrict-prototypes -Winline -Wnested-externs -Wpointer-arith \ -- -Wmissing-field-initializers" --fi -- -- -- -- - - DATADIR=`eval echo $datadir` - QSF_SCHEMA_DIR=`eval echo $DATADIR`"/xml/qof/qsf" diff --git a/dev-libs/qof/qof-0.7.2.ebuild b/dev-libs/qof/qof-0.7.2.ebuild deleted file mode 100644 index 8d11f79d55cb..000000000000 --- a/dev-libs/qof/qof-0.7.2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ - # Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/qof/qof-0.7.2.ebuild,v 1.11 2008/01/10 21:38:07 fmccor Exp $ - -inherit eutils - -DESCRIPTION="A Query Object Framework" -HOMEPAGE="http://qof.sourceforge.net/" -SRC_URI="mirror://sourceforge/qof/${P}.tar.gz" -LICENSE="GPL-2" - -SLOT="0" - -KEYWORDS="~amd64 ~ppc64 sparc x86" - -IUSE="" - -DEPEND="gnome-extra/libgda" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-remove_spurious_CFLAGS.patch" -} - -src_compile() { - econf || die - emake -j1 || die -} - -src_install() { - emake -j1 DESTDIR="${D}" install || die -} |