head	1.5;
access;
symbols
	RELEASE_8_3_0:1.4
	RELEASE_9_0_0:1.4
	RELEASE_7_4_0:1.4
	RELEASE_8_2_0:1.4
	RELEASE_6_EOL:1.4
	RELEASE_8_1_0:1.4
	RELEASE_7_3_0:1.4
	RELEASE_8_0_0:1.4
	RELEASE_7_2_0:1.4
	RELEASE_7_1_0:1.4
	RELEASE_6_4_0:1.4
	RELEASE_5_EOL:1.4
	RELEASE_7_0_0:1.4
	RELEASE_6_3_0:1.4
	PRE_XORG_7:1.4
	RELEASE_4_EOL:1.4
	RELEASE_6_2_0:1.4
	RELEASE_6_1_0:1.4
	RELEASE_5_5_0:1.4
	RELEASE_6_0_0:1.4
	RELEASE_5_4_0:1.4
	RELEASE_4_11_0:1.4
	RELEASE_5_3_0:1.4
	RELEASE_4_10_0:1.4
	RELEASE_5_2_1:1.4
	RELEASE_5_2_0:1.4
	RELEASE_4_9_0:1.4
	RELEASE_5_1_0:1.4
	RELEASE_4_8_0:1.4
	RELEASE_5_0_0:1.4
	RELEASE_4_7_0:1.4
	RELEASE_4_6_2:1.4
	RELEASE_4_6_1:1.4
	RELEASE_4_6_0:1.4
	RELEASE_5_0_DP1:1.4
	RELEASE_4_5_0:1.4
	RELEASE_4_4_0:1.4
	RELEASE_4_3_0:1.4
	RELEASE_4_2_0:1.3
	RELEASE_4_1_1:1.2
	RELEASE_4_1_0:1.2
	RELEASE_3_5_0:1.1.1.1
	RELEASE_4_0_0:1.1.1.1
	RELEASE_3_4_0:1.1.1.1
	RELEASE_3_3_0:1.1.1.1
	v0_3:1.1.1.1
	MIYAMOTO:1.1.1;
locks; strict;
comment	@# @;


1.5
date	2012.12.07.22.27.21;	author svnexp;	state dead;
branches;
next	1.4;

1.4
date	2001.03.13.02.03.47;	author kuriyama;	state Exp;
branches;
next	1.3;

1.3
date	2000.10.05.06.36.02;	author reg;	state Exp;
branches;
next	1.2;

1.2
date	2000.07.07.19.59.24;	author steve;	state Exp;
branches;
next	1.1;

1.1
date	99.09.06.20.04.15;	author taoka;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.09.06.20.04.15;	author taoka;	state Exp;
branches;
next	;


desc
@@


1.5
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/308453
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ## r308453 | pawel | 2012-12-07 22:22:06 +0000 (Fri, 07 Dec 2012) | 8 lines
## SVN ##
## SVN ## - Support CC properly
## SVN ## - Switch to PLIST_FILES
## SVN ## - Add option for GTK2 support
## SVN ##
## SVN ## PR:		ports/174174
## SVN ## Submitted by:	KATO Tsuguru <tkato432@@yahoo.com>
## SVN ## Feature safe:	yes
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ##
@
text
@--- Makefile.gtk.orig	Mon Mar 12 16:24:08 2001
+++ Makefile.gtk	Tue Mar 13 02:31:51 2001
@@@@ -1,9 +1,11 @@@@
 # $Id: Makefile.gtk,v 1.3 2001/03/12 07:24:08 rmiya Exp $
 CC = gcc
-CFLAGS = -Wall -DGTK
-GTKCONFIG = gtk12-config
+CFLAGS += -Wall -DGTK
+GTKCONFIG = $(GTK_CONFIG)
 OBJS = molwt.o usage.o element.o reduce.o count.o calculate.o \
   initwidget.o allowcase.o inputformula.o addtolist.o atomicnumber.o
+
+all: gmolwt
 
 molwt: gmolwt
 	rm -f molwt
@


1.4
log
@Upgrade to 0.4.

Submitted by:	Ryo MIYAMOTO <rmiya@@cc.hirosaki-u.ac.jp> (maintainer)
PR:		ports/25741
@
text
@@


1.3
log
@Implement USE_GTK, part 1.
@
text
@d1 6
a6 5
--- Makefile.gtk.orig	Sat Aug 28 03:46:47 1999
+++ Makefile.gtk	Sun Sep 24 00:20:45 2000
@@@@ -1,7 +1,9 @@@@
-CC = gcc
-CFLAGS = -DGTK
d8 1
a8 2
+CC ?= gcc
+CFLAGS += -DGTK
d10 2
a11 1
 OBJS = molwt.o usage.o element.o reduce.o count.o calculate.o initwidget.o allowcase.o inputformula.o addtolist.o
d16 1
a16 1
 	ln -s gmolwt molwt
@


1.2
log
@- Use GTK_CONFIG/GLIB_CONFIG instead of hardcoded gtk12-config/glib12-config
- Support CC/CFLAGS/PREIFX/LOCALBASE/X11BASE/MAKE/etc. properly

PR:		19623
Submitted by:	KATO Tsuguru <tkato@@prontomail.ne.jp>
@
text
@d1 15
a15 21
*** Makefile.gtk.orig	Sat Aug 28 19:46:47 1999
--- Makefile.gtk	Sat Jul  1 15:49:31 2000
***************
*** 1,7 ****
! CC = gcc
! CFLAGS = -DGTK
! GTKCONFIG = gtk12-config
  OBJS = molwt.o usage.o element.o reduce.o count.o calculate.o initwidget.o allowcase.o inputformula.o addtolist.o
  
  molwt: gmolwt
  	ln -s gmolwt molwt
--- 1,9 ----
! CC ?= gcc
! CFLAGS += -DGTK
! GTKCONFIG = $(GTK_CONFIG)
  OBJS = molwt.o usage.o element.o reduce.o count.o calculate.o initwidget.o allowcase.o inputformula.o addtolist.o
+ 
+ all: gmolwt
  
  molwt: gmolwt
  	ln -s gmolwt molwt
@


1.1
log
@Initial revision
@
text
@d1 2
a2 2
*** Makefile.gtk	Sat Aug 28 19:46:47 1999
--- Makefile	Mon Aug 30 19:49:21 1999
d4 4
a7 3
*** 3,8 ****
--- 3,10 ----
  GTKCONFIG = gtk12-config
d10 8
d19 1
a19 1
+ 
a21 1
  
@


1.1.1.1
log
@This program calculate formula weight and percent of each elements.

PR:		ports/13467
Submitted by:	Ryo MIYAMOTO <rmiya@@cc.hirosaki-u.ac.jp>
@
text
@@
