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 /dev-libs/libnatspec | |
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 'dev-libs/libnatspec')
-rw-r--r-- | dev-libs/libnatspec/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libnatspec/files/libnatspec-0.2.6-iconv.patch | 12 | ||||
-rw-r--r-- | dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild | 45 | ||||
-rw-r--r-- | dev-libs/libnatspec/libnatspec-0.2.6.ebuild | 40 | ||||
-rw-r--r-- | dev-libs/libnatspec/metadata.xml | 8 |
5 files changed, 106 insertions, 0 deletions
diff --git a/dev-libs/libnatspec/Manifest b/dev-libs/libnatspec/Manifest new file mode 100644 index 000000000000..3df091b75b3d --- /dev/null +++ b/dev-libs/libnatspec/Manifest @@ -0,0 +1 @@ +DIST libnatspec-0.2.6.tar.bz2 500525 SHA256 c3831f7373501ed7b23ffb03d9a78650dee93dbf997a61767b7dea009d4a757f SHA512 6bed3c8b2937ee27666a7deedcdebd7b24a8f495be63008fd70c467de4ab532e6448e6b682ed3be04a3a60ed64acaa0074d87231a421f6c73d6a7ee1d17bc66b WHIRLPOOL 04848603498ab27ea5dc09f1352e08632b3a182e4e2f0cdc0cb0f650709533ae13e768f973e94425a1088da3c8b090ca4e9cd047b0c1394e89742ab3a5a8d542 diff --git a/dev-libs/libnatspec/files/libnatspec-0.2.6-iconv.patch b/dev-libs/libnatspec/files/libnatspec-0.2.6-iconv.patch new file mode 100644 index 000000000000..baf024d29b1a --- /dev/null +++ b/dev-libs/libnatspec/files/libnatspec-0.2.6-iconv.patch @@ -0,0 +1,12 @@ +diff --git a/configure.ac b/configure.ac +index ce9ce28..f1c4826 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -50,6 +50,7 @@ AC_CHECK_HEADERS([iconv.h],check_iconv=true) + if test "x$check_iconv" == x ; then + AC_MSG_ERROR([*** iconv.h not found.]) + fi ++AC_CHECK_LIB([iconv], libiconv_open) + + # check Doxygen + DOXYGEN="" diff --git a/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild b/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild new file mode 100644 index 000000000000..0862e60a57af --- /dev/null +++ b/dev-libs/libnatspec/libnatspec-0.2.6-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit autotools eutils python-single-r1 + +DESCRIPTION="library to smooth charset/localization issues" +HOMEPAGE="http://natspec.sourceforge.net/" +SRC_URI="mirror://sourceforge/natspec/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +IUSE="doc python" + +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND=" + dev-libs/popt + python? ( ${PYTHON_DEPS} ) +" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + python? ( dev-lang/tcl:0= )" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-iconv.patch + # regenerate to fix imcompatible readlink usage + rm -f "${S}"/ltmain.sh "${S}"/libtool || die + eautoreconf +} + +src_configure() { + use doc || export ac_cv_prog_DOX=no + # braindead configure script does not disable python on --without-python + econf $(use python && use_with python) +} diff --git a/dev-libs/libnatspec/libnatspec-0.2.6.ebuild b/dev-libs/libnatspec/libnatspec-0.2.6.ebuild new file mode 100644 index 000000000000..ac9e7f259d27 --- /dev/null +++ b/dev-libs/libnatspec/libnatspec-0.2.6.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="2" + +inherit autotools eutils + +DESCRIPTION="library to smooth charset/localization issues" +HOMEPAGE="http://natspec.sourceforge.net/" +SRC_URI="mirror://sourceforge/natspec/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" +IUSE="doc python" + +RDEPEND="python? ( >=dev-lang/python-2.3 ) + dev-libs/popt" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + python? ( dev-lang/tcl:0 )" + +src_prepare() { + epatch "${FILESDIR}"/${P}-iconv.patch + # regenerate to fix imcompatible readlink usage + rm -f "${S}"/ltmain.sh "${S}"/libtool || die + eautoreconf +} + +src_configure() { + use doc || export ac_cv_prog_DOX=no + # braindead configure script does not disable python on --without-python + econf $(use python && use_with python) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc ChangeLog NEWS README TODO +} diff --git a/dev-libs/libnatspec/metadata.xml b/dev-libs/libnatspec/metadata.xml new file mode 100644 index 000000000000..773243d1cf6f --- /dev/null +++ b/dev-libs/libnatspec/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>cjk</herd> + <upstream> + <remote-id type="sourceforge">natspec</remote-id> + </upstream> +</pkgmetadata> |