diff options
author | 2018-03-06 16:56:29 +0100 | |
---|---|---|
committer | 2018-03-06 17:03:13 +0100 | |
commit | 03617dee8f9bf2344793086434cc98bd809e06aa (patch) | |
tree | 21933458dd1193a523c64cb9cc2d45ebf4d0fbd6 /dev-util/astyle | |
parent | dev-libs/mm: Stable for HPPA too. (diff) | |
download | gentoo-03617dee8f9bf2344793086434cc98bd809e06aa.tar.gz gentoo-03617dee8f9bf2344793086434cc98bd809e06aa.tar.bz2 gentoo-03617dee8f9bf2344793086434cc98bd809e06aa.zip |
dev-util/astyle: [QA] fix dolib version for +java
- Remove unused eutils eclass
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-util/astyle')
-rw-r--r-- | dev-util/astyle/astyle-3.1-r1.ebuild (renamed from dev-util/astyle/astyle-3.1.ebuild) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-util/astyle/astyle-3.1.ebuild b/dev-util/astyle/astyle-3.1-r1.ebuild index a84f1e30d840..56d0130f89fd 100644 --- a/dev-util/astyle/astyle-3.1.ebuild +++ b/dev-util/astyle/astyle-3.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit eutils flag-o-matic toolchain-funcs versionator java-pkg-opt-2 +inherit flag-o-matic toolchain-funcs versionator java-pkg-opt-2 DESCRIPTION="Artistic Style is a re-indenter and reformatter for C++, C and Java source code" HOMEPAGE="http://astyle.sourceforge.net/" @@ -57,11 +57,11 @@ src_install() { # ex: libastyle.so.3 dosym lib${PN}.so.${PV}.0 /usr/$(get_libdir)/lib${PN}.so.$(get_major_version) if use java ; then - dolib.so lib${PN}j.so.${PV} - dosym lib${PN}j.so.${PV} /usr/$(get_libdir)/lib${PN}j.so.$(get_major_version) + dolib.so lib${PN}j.so.${PV}.0 + dosym lib${PN}j.so.${PV}.0 /usr/$(get_libdir)/lib${PN}j.so.$(get_major_version) fi if use static-libs ; then - dolib lib${PN}.a + dolib.a lib${PN}.a fi popd >/dev/null || die if use examples ; then @@ -80,6 +80,6 @@ pkg_postinst() { elog "deprecated. For more information, consult astyle's release notes at" elog "http://astyle.sourceforge.net/news.html. To view offline, see:" elog - elog "${ROOT}usr/share/doc/${P}/html" + elog "${EROOT%/}/usr/share/doc/${P}/html" fi } |