[Darwinfiles-cvs] packagetree/media-libs/netpbm ChangeLog,NONE,1.1 netpbm-9.12-r2.ebuild,NONE,1.1
Status: Alpha
Brought to you by:
jimmacr
From: <ji...@us...> - 2002-09-16 13:18:51
|
Update of /cvsroot/darwinfiles/packagetree/media-libs/netpbm In directory usw-pr-cvs1:/tmp/cvs-serv30829 Added Files: ChangeLog netpbm-9.12-r2.ebuild Log Message: Adding netpbm --- NEW FILE: ChangeLog --- # ChangeLog for media-libs/netpbm # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL # $Header: /cvsroot/darwinfiles/packagetree/media-libs/netpbm/ChangeLog,v 1.1 2002/09/16 13:18:48 jimmacr Exp $ 06 Aug 2002; Maik Schreiber <bl...@ge...> netpbm-9.12-r2.ebuild: Fixed Makefile.config to use user-defined CFLAGS. *netpbm-9.12-r2 (12 Apr 2002) 12 Apr 2002; Spider <sp...@ge...> : update with cute new libpng 1.2.1 *netpbm-9.12-r1 (1 Feb 2002) 1 Feb 2002; G.Bevin <gb...@ge...> ChangeLog : Added initial ChangeLog which should be updated whenever the package is updated in any way. This changelog is targetted to users. This means that the comments should well explained and written in clean English. The details about writing correct changelogs are explained in the skel.ChangeLog file which you can find in the root directory of the portage repository. --- NEW FILE: netpbm-9.12-r2.ebuild --- # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # $Header: /cvsroot/darwinfiles/packagetree/media-libs/netpbm/netpbm-9.12-r2.ebuild,v 1.1 2002/09/16 13:18:48 jimmacr Exp $ S=${WORKDIR}/${P} DESCRIPTION="A set of utilities for converting to/from the netpbm (and related) formats" SRC_URI="http://download.sourceforge.net/netpbm/${P}.tgz" HOMEPAGE="http://netpbm.sourceforge.net/" DEPEND=">=media-libs/jpeg-6b >=media-libs/tiff-3.5.5 >=media-libs/libpng-1.2.1" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ppc sparc sparc64" src_unpack() { unpack ${A} cd ${S} sed <${FILESDIR}/${PV}/Makefile.config >Makefile.config \ -e "s|-O3|${CFLAGS}|" } src_compile() { make || die } src_install () { make INSTALL_PREFIX="${D}/usr/" install || die insinto /usr/include/pbm doins pnm/{pam,pnm}.h ppm/{ppm,pgm,pbm}.h doins pbmplus.h shopt/shopt.h dodoc COPYRIGHT.PATENT GPL_LICENSE.txt HISTORY \ Netpbm.programming README README.CONFOCAL README.DJGPP \ README.JPEG README.VMS netpbm.lsm } |