Portage is a package management system used by Gentoo Linux
# ChangeLog for app-text/bibutils
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-text/bibutils/ChangeLog,v 1.5 2008/02/12 16:25:20 markusle Exp $
*bibutils-3.40 (12 Feb 2008)
12 Feb 2008; Markus Dittrich
+bibutils-3.40.ebuild:
Version bump (see bug #179194).
26 Apr 2007; Steve Dibb
add ~amd64, bug 176140
27 Oct 2006; Chris White
Adding ~ppc keywords per bug #152979.
17 Oct 2006; Donnie Berkholz
Slide into sci herd.
*bibutils-3.27 (15 Oct 2006)
15 Oct 2006; Donnie Berkholz
+bibutils-3.27.ebuild:
New package: Interconverts between various bibliography formats using a
common XML intermediate.
DIST bibutils_3.27_src.tgz 277263 RMD160 afad3888969c6e93a6f5b562f4c3fa44bf3b96cf SHA1 9ad99c348e4b37706287949b1bdaf3d3388ebeef SHA256 6f700c80f18dba8e625fac4af6ffcfb0107a11907cab140f23b83bc23640c58e
DIST bibutils_3.40_src.tgz 217458 RMD160 6d6666119669a400716c99ee7c46922de4f54954 SHA1 7516106ffce7bf712c01175a28532aa4724856f7 SHA256 d40da62322f9f2de02c02f44b8890079a01bd090985088bc5bb9ad48cddfb6b4
EBUILD bibutils-3.27.ebuild 1034 RMD160 3997e13e88de0072e925371a9e8bc3fbf9e5e7f5 SHA1 dcd30a7753fa2168ad100034f24f94f576d5400d SHA256 cea1d8559659a9d49083935c81d1bc3667629b5a4d2211df87a4ddf975f871d6
EBUILD bibutils-3.40.ebuild 1128 RMD160 ad7f6c4e47c2f192f4c0ff87f2cf7f781fc81ebd SHA1 0de5c53d52cb9ae783a086209a6b7682820e1882 SHA256 668808668d7f26c6e32a9d93f746e96c8d5563ec8189070c2140c440507c52e2
MISC ChangeLog 903 RMD160 cccbb90b781815e85a20a4a7f5e6a9626ce5b89c SHA1 3c0148017958317fd97517b3376b7cad24cfea43 SHA256 4a3825fb8909f468a0d54d9a7e5545ae2afa45002cf9ef9577ae867bfa7bf974
MISC metadata.xml 156 RMD160 dc078172bfebcb25d69bdf8731714f9cce9d3e36 SHA1 da2b240a255820145b7c83a5c48e45b96b7e9ee6 SHA256 5d22100902db7507a5b5493dd4a66cdb08025faf80a2c0b75e6392315c47f900
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/bibutils/bibutils-3.27.ebuild,v 1.5 2008/02/12 22:53:28 mr_bones_ Exp $
inherit toolchain-funcs
MY_P="${P/-/_}"
DESCRIPTION="Interconverts between various bibliography formats using a common XML intermediate"
HOMEPAGE="http://www.scripps.edu/~cdputnam/software/bibutils"
SRC_URI="http://www.scripps.edu/~cdputnam/software/bibutils/${MY_P}_src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
S="${WORKDIR}/${MY_P}"
src_compile() {
# The custom configure script sucks, so we'll just do its job
# ourselves
sed \
-e "s:REPLACE_CC:CC=\"$(tc-getCC) ${CFLAGS}\":g" \
-e "s:REPLACE_RANLIB:RANLIB=\"$(tc-getRANLIB)\":g" \
-e "s:REPLACE_INSTALLDIR:\"${D}/usr/bin\":g" \
-e "s:REPLACE_POSTFIX::g" \
Makefile_start \
> Makefile
emake || die "emake failed"
}
src_install() {
dodir /usr/bin
emake install || die "emake install failed"
dodoc ChangeLog
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/bibutils/bibutils-3.40.ebuild,v 1.2 2008/02/12 22:53:28 mr_bones_ Exp $
inherit toolchain-funcs
MY_P="${P/-/_}"
DESCRIPTION="Interconverts between various bibliography formats using a common XML intermediate"
HOMEPAGE="http://www.scripps.edu/~cdputnam/software/bibutils"
SRC_URI="http://www.scripps.edu/~cdputnam/software/bibutils/${MY_P}_src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
S="${WORKDIR}/${MY_P}"
src_compile() {
# The custom configure script sucks, so we'll just do its
# job ourselves
rm -f Makefile || die "Failed to purge old Makefile"
sed \
-e "s:REPLACE_CC:CC=\"$(tc-getCC) ${CFLAGS}\":g" \
-e "s:REPLACE_RANLIB:RANLIB=\"$(tc-getRANLIB)\":g" \
-e "s:REPLACE_INSTALLDIR:\"${D}/usr/bin\":g" \
-e "s:REPLACE_POSTFIX::g" \
Makefile_start \
> Makefile \
|| die "Failed to set upt Makefile"
emake || die "emake failed"
}
src_install() {
dodir /usr/bin
emake install || die "emake install failed"
dodoc ChangeLog
}