summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-03-22 16:08:56 +0000
committerSamuli Suominen <drac@gentoo.org>2008-03-22 16:08:56 +0000
commit2a4aaa66583e5a512dd02f16133917577de33294 (patch)
treefba4e640f4b1ddefe3fd502e87e56d720d81428b /media-libs/libcddb
parentfix typo (diff)
downloadgentoo-2-2a4aaa66583e5a512dd02f16133917577de33294.tar.gz
gentoo-2-2a4aaa66583e5a512dd02f16133917577de33294.tar.bz2
gentoo-2-2a4aaa66583e5a512dd02f16133917577de33294.zip
amd64 stable
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-libs/libcddb')
-rw-r--r--media-libs/libcddb/ChangeLog7
-rw-r--r--media-libs/libcddb/libcddb-1.3.0-r1.ebuild26
2 files changed, 18 insertions, 15 deletions
diff --git a/media-libs/libcddb/ChangeLog b/media-libs/libcddb/ChangeLog
index b011c624992d..adf8cfb1eb4a 100644
--- a/media-libs/libcddb/ChangeLog
+++ b/media-libs/libcddb/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libcddb
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/ChangeLog,v 1.41 2007/11/13 08:38:30 aballier Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/ChangeLog,v 1.42 2008/03/22 16:08:56 drac Exp $
+
+ 22 Mar 2008; Samuli Suominen <drac@gentoo.org> libcddb-1.3.0-r1.ebuild:
+ amd64 stable
*libcddb-1.3.0-r1 (13 Nov 2007)
diff --git a/media-libs/libcddb/libcddb-1.3.0-r1.ebuild b/media-libs/libcddb/libcddb-1.3.0-r1.ebuild
index 78bcee45f5f6..f76c8f08dd63 100644
--- a/media-libs/libcddb/libcddb-1.3.0-r1.ebuild
+++ b/media-libs/libcddb/libcddb-1.3.0-r1.ebuild
@@ -1,44 +1,44 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/libcddb-1.3.0-r1.ebuild,v 1.1 2007/11/13 08:38:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/libcddb-1.3.0-r1.ebuild,v 1.2 2008/03/22 16:08:56 drac Exp $
-inherit libtool autotools eutils
+inherit autotools eutils
DESCRIPTION="A library for accessing a CDDB server"
-HOMEPAGE="http://libcddb.sourceforge.net/"
+HOMEPAGE="http://libcddb.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-RESTRICT="test"
+
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc"
+RESTRICT="test"
+
DEPEND="doc? ( app-doc/doxygen )"
src_unpack() {
unpack ${A}
cd "${S}"
-
epatch "${FILESDIR}/${P}-asneeded-nonglibc.patch"
eautoreconf
- elibtoolize
}
src_compile() {
- econf --without-cdio || die
- emake || die
+ econf --without-cdio
+ emake || die "emake failed."
# Create API docs if needed and possible
if use doc; then
cd doc
- doxygen doxygen.conf || die
+ doxygen doxygen.conf || die "doxygen failed."
fi
}
src_install() {
- emake DESTDIR="${D}" install || die
-
+ emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
+
# Create API docs if needed and possible
use doc && dohtml doc/html/*
}