diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-text/bibclean | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-text/bibclean')
-rw-r--r-- | app-text/bibclean/Manifest | 1 | ||||
-rw-r--r-- | app-text/bibclean/bibclean-2.11.4.ebuild | 33 | ||||
-rw-r--r-- | app-text/bibclean/files/bibclean-2.11.4-ldflags.patch | 13 | ||||
-rw-r--r-- | app-text/bibclean/metadata.xml | 5 |
4 files changed, 52 insertions, 0 deletions
diff --git a/app-text/bibclean/Manifest b/app-text/bibclean/Manifest new file mode 100644 index 000000000000..88df903343fa --- /dev/null +++ b/app-text/bibclean/Manifest @@ -0,0 +1 @@ +DIST bibclean-2.11.4.tar.bz2 1244790 SHA256 cb38bcee5db50efe0135dd0499e2adf75574012467c1c6f72a63799198361225 SHA512 e04f785ca017148600984a852e3093b86eb3ca1c67f41427556d2b08e57e11f05502db5a5beb868a33780a12ee06dc7f5eb9cf794c8f7346cfce582e4761ce14 WHIRLPOOL 59fd63259bfbddb855a571777d840a6562ad9d99788a5e60e822cfdd1baafd544991b5aff8da7078e83f8c54d9ff58cb101531600fd36f423c7dbb633d97f1b4 diff --git a/app-text/bibclean/bibclean-2.11.4.ebuild b/app-text/bibclean/bibclean-2.11.4.ebuild new file mode 100644 index 000000000000..4ee2a5f23d54 --- /dev/null +++ b/app-text/bibclean/bibclean-2.11.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit toolchain-funcs eutils + +DESCRIPTION="BibTeX bibliography prettyprinter and syntax checker" +SRC_URI="http://www.math.utah.edu/pub/bibclean/${P}.tar.bz2" +HOMEPAGE="http://www.math.utah.edu/pub/bibclean/" + +# http://packages.debian.org/changelogs/pool/main/b/bibclean/bibclean_2.11.4-5/bibclean.copyright +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64" +IUSE="" + +SLOT="0" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-ldflags.patch" +} + +src_compile() { + tc-export CC CXX + econf + emake LDFLAGS="${LDFLAGS}" || die "emake failed" +} + +src_install() { + dobin bibclean + newman bibclean.man bibclean.1 +} diff --git a/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch b/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch new file mode 100644 index 000000000000..e93c3be91030 --- /dev/null +++ b/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch @@ -0,0 +1,13 @@ +Index: bibclean-2.11.4/Makefile.in +=================================================================== +--- bibclean-2.11.4.orig/Makefile.in ++++ bibclean-2.11.4/Makefile.in +@@ -343,7 +343,7 @@ BIBCLEAN-OBJS = bibclean.o chek.o do.o + $(LIBOBJS) + + bibclean: $(BIBCLEAN-OBJS) +- $(CC) -o bibclean $(CFLAGS) $(BIBCLEAN-OBJS) $(LIBS) ++ $(CC) $(LDFLAGS) -o bibclean $(CFLAGS) $(BIBCLEAN-OBJS) $(LIBS) + + # This target converts the option descriptions from the manual pages + # to C code for inclusion in bibclean.c. The first awk command diff --git a/app-text/bibclean/metadata.xml b/app-text/bibclean/metadata.xml new file mode 100644 index 000000000000..ba6a8a8800d5 --- /dev/null +++ b/app-text/bibclean/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>tex</herd> +</pkgmetadata> |