Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
calchan 07/09/18 09:59:41
Modified: ChangeLog
Added: geda-1.2.0.ebuild
Log:
Version bump, thanks to Stefan Salewski (bug #192367).
(Portage version: 2.1.3.9)
Revision Changes Path
1.37 sci-electronics/geda/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/geda/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/geda/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/geda/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 19 Jul 2007 09:35:13 -0000 1.36
+++ ChangeLog 18 Sep 2007 09:59:40 -0000 1.37
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/geda
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v 1.36 2007/07/19 09:35:13 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/ChangeLog,v 1.37 2007/09/18 09:59:40 calchan Exp $
+
+*geda-1.2.0 (18 Sep 2007)
+
+ 18 Sep 2007; Denis Dupeyron <calchan@g.o> +geda-1.2.0.ebuild:
+ Version bump, thanks to Stefan Salewski (bug #192367).
*geda-1.1.1 (19 Jul 2007)
1.1 sci-electronics/geda/geda-1.2.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/geda/geda-1.2.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/geda/geda-1.2.0.ebuild?rev=1.1&content-type=text/plain
Index: geda-1.2.0.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/geda/geda-1.2.0.ebuild,v 1.1 2007/09/18 09:59:40 calchan Exp $
inherit eutils
SUBDIR="v1.2"
S="${WORKDIR}"
HOMEPAGE="http://www.geda.seul.org"
DESCRIPTION="geda is a core metapackage which compiles all the necessary components you would need for a minimal gEDA/gaf system"
SRC_URI="http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gattrib-${PV}.tar.gz
http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gnetlist-${PV}.tar.gz
http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gschem-${PV}.tar.gz
http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-gsymcheck-${PV}.tar.gz
http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-symbols-${PV}.tar.gz
http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-utils-${PV}.tar.gz
doc? ( http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-docs-${PV}.tar.gz )
examples? ( http://www.geda.seul.org/release/${SUBDIR}/${PV}/geda-examples-${PV}.tar.gz )"
IUSE="doc examples gd"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
SLOT="0"
DEPEND=">=x11-libs/gtk+-2.4
>=dev-scheme/guile-1.6.3
=sci-libs/libgeda-${PV}"
pkg_setup() {
if has_version ">=dev-scheme/guile-1.8" ; then
built_with_use "dev-scheme/guile" deprecated \
|| die "You need either <dev-scheme/guile-1.8, or >=dev-scheme/guile-1.8 with USE=deprecated"
fi
if use gd ; then
built_with_use sci-libs/libgeda gd || die "sci-libs/libgeda must be compiled with USE=gd"
else
! built_with_use sci-libs/libgeda gd || die "sci-libs/libgeda must be compiled with USE=-gd"
fi
}
src_compile() {
for subdir in geda-{gattrib,gnetlist,gschem,gsymcheck,symbols,utils}-${PV}; do
cd ${S}/${subdir}
econf \
--disable-dependency-tracking \
--with-docdir=/usr/share/doc/${PF} \
--with-pcbconfdir=/usr/share/pcb \
--with-pcbm4dir=/usr/share/pcb/m4 \
|| die "Configuration failed in ${subdir}"
emake || die "Compilation failed in ${subdir}"
done
if use doc ; then
cd ${S}/geda-docs-${PV}
econf --with-docdir=/usr/share/doc/${PF} || die "Configuration failed in geda-docs-${PV}"
emake || die "Compilation failed in geda-docs-${PV}"
fi
}
src_install () {
for subdir in {gattrib,gnetlist,gschem,gsymcheck,symbols,utils}; do
cd ${S}/geda-${subdir}-${PV}
emake DESTDIR=${D} install || die "Installation failed in geda-${subdir}-${PV}"
newdoc AUTHORS AUTHORS.${subdir}
newdoc BUGS BUGS.${subdir}
for READMEx in $(ls README*); do
newdoc ${READMEx} ${READMEx}.${subdir}
done
done
rm ${D}/usr/share/gEDA/sym/gnetman -Rf # Fix collision with gnetman; bug #77361.
if use doc ; then
cd ${S}/geda-docs-${PV}
emake DESTDIR=${D} install || die "Installation failed in geda-docs-${PV}"
fi
if use examples ; then
cd ${S}
mv geda-examples-${PV} examples
insinto /usr/share/gEDA
doins -r examples
fi
}
--
gentoo-commits@g.o mailing list
|
|