summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD.M.D. Ljungmark <spider@gentoo.org>2002-04-01 01:00:05 +0000
committerD.M.D. Ljungmark <spider@gentoo.org>2002-04-01 01:00:05 +0000
commit9dbc14fb3c3dc9ffe5ac3e9ab8b6cdf4fc8b68f8 (patch)
tree7b33791a36c8238b35250b60d2f5bb50306a00a5 /media-gfx/gphoto
parentupdated changelog (diff)
downloadhistorical-9dbc14fb3c3dc9ffe5ac3e9ab8b6cdf4fc8b68f8.tar.gz
historical-9dbc14fb3c3dc9ffe5ac3e9ab8b6cdf4fc8b68f8.tar.bz2
historical-9dbc14fb3c3dc9ffe5ac3e9ab8b6cdf4fc8b68f8.zip
theese are the ones moved to gphoto2
Diffstat (limited to 'media-gfx/gphoto')
-rw-r--r--media-gfx/gphoto/gphoto-2.0-r1.ebuild48
-rw-r--r--media-gfx/gphoto/gphoto-2.0.ebuild69
2 files changed, 0 insertions, 117 deletions
diff --git a/media-gfx/gphoto/gphoto-2.0-r1.ebuild b/media-gfx/gphoto/gphoto-2.0-r1.ebuild
deleted file mode 100644
index f4e4f1286fa4..000000000000
--- a/media-gfx/gphoto/gphoto-2.0-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author AJ Lewis <aj@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto/gphoto-2.0-r1.ebuild,v 1.1 2002/03/17 22:20:47 azarah Exp $
-
-MY_P="${PN}2-`echo ${PV} |sed -e 's:_::'`"
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="free, redistributable digital camera software application"
-SRC_URI="http://www.gphoto.net/dist/${MY_P}.tar.gz"
-HOMEPAGE="http://www.gphoto.org/"
-
-DEPEND="virtual/glibc
- >=dev-libs/libusb-0.1.5
- >=dev-libs/glib-1.2.10
- >=sys-libs/zlib-1.1.4"
-
-
-src_compile() {
-
- #update libtool to fix "relink" bug.
- libtoolize --copy --force
- aclocal
-
- # -pipe does no work
- env CFLAGS="${CFLAGS/-pipe/}" ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- || die
-
- cp libgphoto2/Makefile libgphoto2/Makefile.orig
- sed -e 's:$(prefix)/doc/gphoto2:/usr/share/doc/${PF}:' \
- libgphoto2/Makefile.orig >libgphoto2/Makefile
-
- make || die
-}
-
-src_install() {
-
- make prefix=${D}/usr \
- sysconfdir=${D}/etc \
- gphotodocdir=${D}/usr/share/doc/${PF} \
- HTML_DIR=${D}/usr/share/doc/${PF}/sgml \
- install || die
-
- dodoc ChangeLog NEWS* README
- rm -rf ${D}/usr/share/doc/${PF}/sgml/gphoto2
-}
-
diff --git a/media-gfx/gphoto/gphoto-2.0.ebuild b/media-gfx/gphoto/gphoto-2.0.ebuild
deleted file mode 100644
index 4b7eb3dcc199..000000000000
--- a/media-gfx/gphoto/gphoto-2.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author AJ Lewis <aj@gentoo.org>
-
-MY_P="${PN}2-`echo ${PV} |sed -e 's:_::'`"
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="free, redistributable digital camera software application"
-SRC_URI="http://www.gphoto.net/dist/${MY_P}.tar.gz"
-HOMEPAGE="http://www.gphoto.org/"
-
-DEPEND="virtual/glibc
- >=dev-libs/libusb-0.1.5
- >=dev-libs/glib-1.2.10
- >=sys-libs/zlib-1.1.4"
-
-
-src_compile() {
-
- # -pipe does no work
- env CFLAGS="${CFLAGS/-pipe/}" ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- || die
-
- cp libgphoto2/Makefile libgphoto2/Makefile.orig
- sed -e 's:$(prefix)/doc/gphoto2:/usr/share/doc/${PF}:' \
- libgphoto2/Makefile.orig >libgphoto2/Makefile
-
- make || die
-}
-
-src_install() {
-
- make prefix=${D}/usr \
- sysconfdir=${D}/etc \
- gphotodocdir=${D}/usr/share/doc/${PF} \
- HTML_DIR=${D}/usr/share/doc/${PF}/sgml \
- install || die
-
- #same problem as gdk-pixbuf .. do not create all the libs the
- #first compile
- if [ ! -e ${D}/usr/lib/libgphoto2.la ]
- then
- cd ${S}/libgphoto2/.libs
- for x in libgphoto2.so*U
- do
- realname=${x/U/}
- mv ${x} ${realname}
-
- exeinto /usr/lib
- doexe ${realname}
- dosym ${realname##*/} /usr/lib/${realname%%.so.*}.so
- dosym ${realname##*/} /usr/lib/${realname%%.so.*}.so.2
-
- insinto /usr/lib
- doins ${realname%%.so.*}.la
- dosed "s:${S}/libgphoto2_port/libgphoto2_port:/usr/lib:" \
- /usr/lib/${realname%%.so.*}.la
- dosed "s:installed=no:installed=yes:" \
- /usr/lib/${realname%%.so.*}.la
- dosed "s:relink_command=:\# relink_command=:" \
- /usr/lib/${realname%%.so.*}.la
- done
- fi
-
- dodoc ChangeLog NEWS* README
- rm -rf ${D}/usr/share/doc/${PF}/sgml/gphoto2
-}
-