diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2005-12-04 23:17:04 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2005-12-04 23:17:04 +0000 |
commit | b5984f23f55c8d233403bcb5fcb066553d0c6780 (patch) | |
tree | f4e64391add264a84766ee24c39b601d9a298775 /dev-java/commons-graph | |
parent | Keep the old libdrm.so.1 around so things don't break horribly on upgrade. (diff) | |
download | historical-b5984f23f55c8d233403bcb5fcb066553d0c6780.tar.gz historical-b5984f23f55c8d233403bcb5fcb066553d0c6780.tar.bz2 historical-b5984f23f55c8d233403bcb5fcb066553d0c6780.zip |
Fixed to not install a versioned jar.
Package-Manager: portage-2.0.53_rc7
Diffstat (limited to 'dev-java/commons-graph')
-rw-r--r-- | dev-java/commons-graph/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/commons-graph/Manifest | 10 | ||||
-rw-r--r-- | dev-java/commons-graph/commons-graph-0.8.1_p20040118.ebuild | 7 |
3 files changed, 14 insertions, 9 deletions
diff --git a/dev-java/commons-graph/ChangeLog b/dev-java/commons-graph/ChangeLog index 458bd452134c..ce2b9e1b9903 100644 --- a/dev-java/commons-graph/ChangeLog +++ b/dev-java/commons-graph/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/commons-graph # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-graph/ChangeLog,v 1.3 2005/12/04 22:47:12 nichoj Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-graph/ChangeLog,v 1.4 2005/12/04 23:17:04 nichoj Exp $ + + 04 Dec 2005; Joshua Nichols <nichoj@gentoo.org> + commons-graph-0.8.1_p20040118.ebuild: + Fixed to not install a versioned jar. 04 Dec 2005; Joshua Nichols <nichoj@gentoo.org> commons-graph-0.8.1_p20040118.ebuild: diff --git a/dev-java/commons-graph/Manifest b/dev-java/commons-graph/Manifest index cf2dabdb8b58..e8e98714ebbd 100644 --- a/dev-java/commons-graph/Manifest +++ b/dev-java/commons-graph/Manifest @@ -1,15 +1,15 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 bc2504b914177aa57d43ec7f593eba23 ChangeLog 710 -MD5 d0f2cfc96f83cc6b74144e063ef799a3 commons-graph-0.8.1_p20040118.ebuild 1759 +MD5 ea3639ae59c29b30ab013957f184512a ChangeLog 841 +MD5 56fa9e9e8de2cc629d436b2684f2269d commons-graph-0.8.1_p20040118.ebuild 1817 MD5 361f23cd46c14f40fbb6590b564f20a5 files/commons-graph-0.8.1_p20040118-gentoo.diff 758 MD5 bf85b87a012c334e20d661447bbf52b4 files/digest-commons-graph-0.8.1_p20040118 75 MD5 a6ec7d7724fbd068ffb39b5be56134ed metadata.xml 157 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) -iD8DBQFDk3IFndWRXhKOboURAtZCAJ9//TLhpffFbwT7o8ipWwfczn8VngCeIIWH -CiPYPFm3AifgqGf24lK+2Nc= -=xwt1 +iD8DBQFDk3kIndWRXhKOboURAo1GAJ4j23rhtoZKNqTdXD/pv/ZTm7kOFwCfeXC+ +qw7I00fxidM3Pi5Gt4jTZXo= +=CcV7 -----END PGP SIGNATURE----- diff --git a/dev-java/commons-graph/commons-graph-0.8.1_p20040118.ebuild b/dev-java/commons-graph/commons-graph-0.8.1_p20040118.ebuild index 4d199580a765..b38b3a636b43 100644 --- a/dev-java/commons-graph/commons-graph-0.8.1_p20040118.ebuild +++ b/dev-java/commons-graph/commons-graph-0.8.1_p20040118.ebuild @@ -1,13 +1,14 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-graph/commons-graph-0.8.1_p20040118.ebuild,v 1.3 2005/12/04 22:47:12 nichoj Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-graph/commons-graph-0.8.1_p20040118.ebuild,v 1.4 2005/12/04 23:17:04 nichoj Exp $ inherit java-pkg eutils MY_PN=graph2 MY_PV=${PV%%_*}.cvs${PV##*_p} MY_P=${MY_PN}-${MY_PV} +API_PV=${PV%%_*} DESCRIPTION="A toolkit for managing graphs and graph based data structures" -# There doesn't seem to be a real home page +# There doesn't seem to be a real home page, so we'll point to a viewcvs HOMEPAGE="http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/graph2/" # this was extracted from a source rpm at jpackage SRC_URI="mirror://gentoo/distfiles/${MY_P}.tar.gz" @@ -48,7 +49,7 @@ src_compile(){ } src_install(){ - java-pkg_dojar target/commons-graph*.jar + java-pkg_newjar target/${PN}-${API_PV}.jar ${PN}.jar use doc && java-pkg_dohtml -r dist/docs/api } |