summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2012-11-02 10:58:06 +0000
committerSergey Popov <pinkbyte@gentoo.org>2012-11-02 10:58:06 +0000
commit415a62a3ff27bf70278f11be11175c7b0bcc9a60 (patch)
tree510b2d2252cb9f41322bc44753b9eb9b5fd81a29
parentia64 stable (diff)
downloadgentoo-2-415a62a3ff27bf70278f11be11175c7b0bcc9a60.tar.gz
gentoo-2-415a62a3ff27bf70278f11be11175c7b0bcc9a60.tar.bz2
gentoo-2-415a62a3ff27bf70278f11be11175c7b0bcc9a60.zip
Fix description and other minor QA issues
(Portage version: 2.2.0_alpha141/cvs/Linux x86_64, unsigned Manifest commit)
-rw-r--r--dev-libs/libhtmlparse/ChangeLog7
-rw-r--r--dev-libs/libhtmlparse/libhtmlparse-0.1.13.ebuild12
2 files changed, 11 insertions, 8 deletions
diff --git a/dev-libs/libhtmlparse/ChangeLog b/dev-libs/libhtmlparse/ChangeLog
index f790943fabfc..970d9d1cb6f9 100644
--- a/dev-libs/libhtmlparse/ChangeLog
+++ b/dev-libs/libhtmlparse/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libhtmlparse
-# Copyright 2002-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhtmlparse/ChangeLog,v 1.10 2012/05/10 15:53:04 ago Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhtmlparse/ChangeLog,v 1.11 2012/11/02 10:58:06 pinkbyte Exp $
+
+ 02 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> libhtmlparse-0.1.13.ebuild:
+ Fix description and other minor QA issues
10 May 2012; Agostino Sarubbo <ago@gentoo.org> -libhtmlparse-0.1.12.ebuild:
Remove old
diff --git a/dev-libs/libhtmlparse/libhtmlparse-0.1.13.ebuild b/dev-libs/libhtmlparse/libhtmlparse-0.1.13.ebuild
index d92429a03bf9..d502afc9cba5 100644
--- a/dev-libs/libhtmlparse/libhtmlparse-0.1.13.ebuild
+++ b/dev-libs/libhtmlparse/libhtmlparse-0.1.13.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhtmlparse/libhtmlparse-0.1.13.ebuild,v 1.2 2005/05/06 12:06:14 ka0ttic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhtmlparse/libhtmlparse-0.1.13.ebuild,v 1.3 2012/11/02 10:58:06 pinkbyte Exp $
-DESCRIPTION="libhtmlparse is a HTML parsing library. It takes HTML tags, text, etc and calls callbacks you define for each type of token in the document."
+DESCRIPTION="HTML parsing library. It takes HTML tags, text, and calls callbacks for each type of token"
HOMEPAGE="http://msalem.translator.cx/libhtmlparse.html"
SRC_URI="http://msalem.translator.cx/dist/${P}.tar.gz"
@@ -15,15 +15,15 @@ RDEPEND="virtual/libc"
DEPEND="${RDEPEND}"
src_unpack() {
- cd ${WORKDIR}
+ cd "${WORKDIR}"
# for some reason, we get a "this does not look like a tar archive" error
# but the following works... go figure.
- gunzip -c ${DISTDIR}/${P}.tar.gz > ${P}.tar
+ gunzip -c "${DISTDIR}"/${P}.tar.gz > ${P}.tar
tar xf ${P}.tar || die "failed to unpack ${P}.tar"
rm ${P}.tar
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS BUGS COPYING INSTALL ChangeLog NEWS README TODO
+ dodoc AUTHORS BUGS INSTALL ChangeLog NEWS README TODO
}