diff options
Diffstat (limited to 'gnustep-apps/mylibrary/mylibrary-0.4.5g.ebuild')
-rw-r--r-- | gnustep-apps/mylibrary/mylibrary-0.4.5g.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnustep-apps/mylibrary/mylibrary-0.4.5g.ebuild b/gnustep-apps/mylibrary/mylibrary-0.4.5g.ebuild new file mode 100644 index 000000000000..bf3612501e81 --- /dev/null +++ b/gnustep-apps/mylibrary/mylibrary-0.4.5g.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/mylibrary/mylibrary-0.4.5g.ebuild,v 1.1 2004/09/25 21:17:33 fafhrd Exp $ + +inherit gnustep + +S=${WORKDIR}/ML + +DESCRIPTION="MyLibrary is a combination of wiki-style notes and file collection." +HOMEPAGE="http://www.people.virginia.edu/~yc2w/MyLibrary/" +SRC_URI="http://www.people.virginia.edu/~yc2w/MyLibrary/${P/myl/MyL}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="${IUSE} doc" +DEPEND="${GS_DEPEND}" +RDEPEND="${GS_RDEPEND}" + +src_install() { + egnustep_env + egnustep_install || die + if use doc + then + mkdir -p ${D}${GNUSTEP_SYSTEM_ROOT}/Library/Documentation/User/MyLibrary + cp Documentation/*.png ${D}${GNUSTEP_SYSTEM_ROOT}/Library/Documentation/User/MyLibrary + cp Documentation/*.html ${D}${GNUSTEP_SYSTEM_ROOT}/Library/Documentation/User/MyLibrary + fi + egnustep_package_config +} + |